Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
35159 | 氢氦锂铍硼 | 采药 | C++ | 通过 | 100 | 69 MS | 324 KB | 289 | 2021-12-13 13:48:39 |
#include <bits/stdc++.h> using namespace std; int f[10001]; int main() { int t,m,time,value; cin>>t>>m; for(int i=1; i<=m; i++) { cin>>time>>value; for(int j=t; j>=time; --j) f[j]=max(f[j-time]+value,f[j]); } cout<<f[t ]<<endl; return 0; }