Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
67283 陶俊宸 采药 C++ 通过 100 1 MS 588 KB 372 2023-01-12 15:54:10

Tests(10/10):


#include<cstdio> #include<algorithm> using namespace std; int t,m,p[101],v[101],dp[101][1001]; int main(){ scanf("%d %d",&t,&m); for(int i=1;i<=m;i++) scanf("%d %d",&p[i],&v[i]); for(int i=1;i<=m;i++){ for(int j=1;j<=t;j++){ dp[i][j]=dp[i-1][j]; if(j>=p[i])dp[i][j]=max(dp[i][j],dp[i-1][j-p[i]]+v[i]); } } printf("%d",dp[m][t]); return 0; }


测评信息: