Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
34533 seanlsy 采药 C++ 通过 100 70 MS 324 KB 231 2021-12-11 22:08:38

Tests(12/12):


#include <bits/stdc++.h> using namespace std; int f[10001]; int main(){ int t,m,w,v; cin>>t>>m; for(int i=1;i<=m;i++){ cin>>w>>v; for(int j=t;j>=w;j--) f[j]=max(f[j],f[j-w]+v); } cout<<f[t]; return 0; }


测评信息: