摘要: #include#include#include#includeusing namespace std;struct Coin{ int v,c;};Coin coin[200];int dp[100000+100];int main(){ int t,n,m; int p,h,c; ... 阅读全文
posted @ 2015-07-29 15:15 sola94 阅读(114) 评论(0) 推荐(0) 编辑
摘要: 转化为01背包#include#include#include#includeusing namespace std;struct Rice{ int v,w,c;};Rice r[120];int dp[50000];int main(){ int t,n,m; int p,h,... 阅读全文
posted @ 2015-07-29 13:10 sola94 阅读(182) 评论(0) 推荐(0) 编辑