Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
67281 李言 采药 C++ 通过 100 0 MS 256 KB 245 2023-01-12 15:53:01

Tests(10/10):


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


测评信息: