标签:style blog http color io os ar for strong
题目ID:1154
题目名称:采药
有效耗时:0 ms
空间消耗:4436 KB
程序代码:
1 #include<iostream> 2 #include<string> 3 #include<vector> 4 using namespace std; 5 6 int f[1001][1001]; 7 8 int main(){ 9 for(int i=0;i<1001;i++) 10 for(int j=0;j<1001;j++){ 11 f[i][j]=0; 12 } 13 int tt,m; 14 cin>>tt>>m; 15 int t,v; 16 cin>>t>>v; 17 if(t<=tt) 18 { 19 for(int i=t;i<=tt;i++){ 20 f[0][i]=v; 21 } 22 } 23 for(int i=1;i<m;i++){ 24 int t,v; 25 cin>>t>>v; 26 for(int j=t;j<=tt;j++){ 27 if(t<=tt){ 28 if(f[i-1][j]>(f[i-1][j-t]+v)){ 29 f[i][j]=f[i-1][j]; 30 }else{ 31 f[i][j]=f[i-1][j-t]+v; 32 } 33 }else{ 34 f[i][j]=f[i-1][j]; 35 } 36 } 37 } 38 cout<<f[m-1][tt]<<endl; 39 // system("pause"); 40 return 0; 41 }
70 3 71 100 69 1 1 2
3
标签:style blog http color io os ar for strong
原文地址:http://www.cnblogs.com/jinfang134/p/4034399.html