提交时间:2023-01-12 15:55:16
运行 ID: 67286
#include<bits/stdc++.h> using namespace std; int w[110],v[110]; int f[1000][1000]; int main(){ int t,m; cin>>t>>m; for(int i=1;i<=m;i++)cin>>w[i]>>v[i]; for(int i=1; i<=m; i++){ for(int j=t; j>=w[i]; j--){ f[i][j]=max(f[i-1][j],f[i-1][j-w[i]]+v[i]); } } cout<<f[m][t]; return 0; }