标签:col name 梦想 资质 class for namespace 世界 using
70 3 71 100 69 1 1 2
3
NOIP 2005
另一道简单的DP题
#include <stdio.h> using namespace std; int m,n,f[1001]={0},c[101],w[101],x,y,z; int main() { scanf("%d%d",&m,&n); for(x=1;x<=n;x++) scanf("%d%d",&w[x],&c[x]); for(x=1;x<=n;x++) for(y=m;y>=w[x];y--) if(f[y]<f[y-w[x]]+c[x])f[y]=f[y-w[x]]+c[x]; printf("%d",f[m]); return 0; }
标签:col name 梦想 资质 class for namespace 世界 using
原文地址:http://www.cnblogs.com/wisdom-jie/p/7740070.html