Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
113313 林泽豪 0/1背包 C++ 通过 100 0 MS 304 KB 339 2023-12-02 09:02:11

Tests(10/10):


#include<bits/stdc++.h> using namespace std; int w[1000],c[1000],f[1000][1000]; int main(){ int n,m; cin>>m>>n; for(int i=1;i<=n;i++){ cin>>w[i]>>c[i]; } for(int i=1;i<=n;i++){ for(int o=m;o>=1;o--){ if(w[i]<=o)f[i][o]=max(f[i-1][o],f[i-1][o-w[i]]+c[i]); else{ f[i][o]=f[i-1][o]; } } }cout<<f[n][m]; return 0; }


测评信息: