Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
144243 | 刘语晗 | 采药 | C++ | 通过 | 100 | 65 MS | 444 KB | 389 | 2024-04-21 13:25:26 |
#include<bits/stdc++.h> #define IOS ios::sync_with_stdio(0);cin.tie(0);cout.tie(0); using namespace std; const int N=1e5+10; int a[N],b[N],dp[N]; int t,m; int main() { IOS; cin>>t>>m; for(int i=1;i<=m;++i) { cin>>a[i]>>b[i]; } for(int i=1;i<=m;++i) { for(int j=t;j>=a[i];--j) { dp[j]=max(dp[j],dp[j-a[i]]+b[i]); } } cout<<dp[t]; return 0; }