Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
67306 梅煦洋 采药 C++ 运行出错 0 0 MS 92 KB 501 2023-01-12 16:09:57

Tests(0/10):


#include<bits/stdc++.h> using namespace std; int timer[101],value[101],dp[10001][10001]={0}; int T,M; int num=0; int main(){ freopen("medic.in","r",stdin); freopen("medic.out","w",stdout); cin>>T>>M; for(int i=1;i<=M;i++){ cin>>timer[i]>>value[i]; num+=timer[i]; } if(num<T) T=num; for(int i=1;i<=M;i++){ for(int j=1;j<=T;j++){ if(timer[i]<=j) dp[i][j]=max(dp[i-1][j],dp[i-1][j-timer[i]]+value[i]); else dp[i][j]=dp[i-1][j]; } } cout<<dp[M][T]<<endl; }


测评信息: