洛谷 P2925 [USACO08DEC]干草出售Hay For Sale

嗯...

题目链接:https://www.luogu.org/problemnew/show/P2925

这是一道简单的01背包问题,但是按照正常的01背包来做会TLE一个点,所以要加一个特判(见代码)。

AC代码:

 #include<cstdio>
#include<iostream> using namespace std; int v[], dp[]; int main(){
int c, h;
scanf("%d%d", &c, &h);
for(int i = ; i <= h; i++)
scanf("%d", &v[i]);
for(int i = ; i <= h; i++){
for(int j = c; j >= v[i]; j--){
dp[j] = max(dp[j], dp[j - v[i]] + v[i]);
if(dp[j] == c){
printf("%d", c);
return ;
}//特判
}
}
printf("%d\n", dp[c]);
return ;
}

AC代码

上一篇:2017多校联合训练2—HDU6054--Is Derek lying?(思维题)


下一篇:hdu 4649 Professor Tian 多校联合训练的题