博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
hdu2602
阅读量:4949 次
发布时间:2019-06-11

本文共 709 字,大约阅读时间需要 2 分钟。

01-bag

#include 
#include
#include
int main(){ int t; int n,v; int c[1100],w[1100]; int dp[1100]; int i,j; scanf("%d",&t); while(t--){ scanf("%d%d",&n,&v); for(i=1;i<=n;++i){ scanf("%d",&w[i]); } for(i=1;i<=n;++i){ scanf("%d",&c[i]); } memset(dp,0,sizeof(dp)); for(i=1;i<=n;++i){ for(j=v;j>=c[i];--j){ dp[j]=fmax( dp[j] , dp[j-c[i]]+w[i]); } } printf("%d\n",dp[v]); } return 0;}

 

posted on
2013-11-17 15:10 阅读(
...) 评论(
...)

转载于:https://www.cnblogs.com/symons1992/p/3427859.html

你可能感兴趣的文章
[LeetCode] 21. Merge Two Sorted Lists_Easy tag: Linked List
查看>>
[Reactive Programming] Using an event stream of double clicks -- buffer()
查看>>
家有Mybatis初养成1
查看>>
mvp学习
查看>>
MySQL缓存分类和配置
查看>>
第二次java作业
查看>>
js 数组
查看>>
P2260 [清华集训2012]模积和
查看>>
Discourse的优化
查看>>
小谈-—ServletConfig对象和servletContext对象
查看>>
python:接口开发
查看>>
Webform和MVC,为什么MVC更好一些?
查看>>
开启浏览器javascrIE6被弃 国产浏览器厂商争食“蛋糕
查看>>
Metropolis(多源点最短路)
查看>>
Subsequence
查看>>
ubuntu下访问windows共享文件夹
查看>>
Beta 答辩总结
查看>>
Code Page Identifiers zz
查看>>
JAVA设计模式初探之装饰者模式
查看>>
c语言中的隐式函数声明(转)
查看>>