NYOJ 311 完全背包 (dp)
摘要:
地址:http://acm.nyist.net/JudgeOnline/problem.php?pid=311思路:dp问题,同NYOJ 289 苹果问题,在此基础上改动即可AC,至于除dp[0]为0外全部初始化为负无穷,不太明白为啥要初始化负无穷。。。在思考。。。代码如下: 1 #include <stdio.h> 2 #include <string.h> 3 #define N 100001 4 int dp[50001]; 5 int c[N],w[N]; 6 int max(int x,int y) 7 { 8 return x>y?x:y; 9 }10 阅读全文
posted @ 2012-08-17 21:29 mycapple 阅读(286) 评论(0) 推荐(0) 编辑