寒冰王座 hdu 1248(背包)

http://acm.hdu.edu.cn/showproblem.php?pid=1248

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <algorithm>
#define maxn 11000
using namespace std;
int dp[maxn]; int main()
{
int T, n; scanf("%d", &T); int a[]={, , }; while(T --)
{
scanf("%d", &n); memset(dp, , sizeof(dp)); for(int i=; i<; i++)
{
for(int j=a[i]; j<=n; j++)
{
dp[j]=max(dp[j], dp[j-a[i]]+a[i]);
}
} printf("%d\n", n-dp[n]);
}
return ;
}
上一篇:java web 中 filter 与 servlet的关系


下一篇:frame和iframe