美丽帅哥

文章
6
资源
0
加入时间
3年0月21天

洛谷P1460 健康的荷斯坦奶牛

解题思路: 首先想到的是搜索,搜索使用哪几种符合条件的饲料,找最小的花费。由于dfs的特点,先找到的方案一定是字典序最小的。 但是暴力搜索会超时,需要剪枝,详见注释#include<iostream>#include<cstdio>#include<cstring>using namespace std;int n,m,v[35],a[35][35],ans=1e9,cnt,t

Eigen::Matrix矩阵转换

将Matrix3d转换至Matrix4d的几种方法:1:Eigen::Matrix3d R;// Find your Rotation MatrixEigen::Vector3d T;// Find your translation VectorEigen::Matrix4d Trans; // Your Transformation MatrixTrans.setIdenti...