2 条题解
-
2
最简单的背包问题,直接套模板
#include<bits/stdc++.h> using namespace std; int maxw,n,w[105],p[105],f[20005]; int main(){ ios::sync_with_stdio(false); // 输入输出加速 cin.tie(0); cout.tie(0); cin>>maxw>>n; for(int i=1;i<=n;i++)cin>>w[i]>>p[i]; for(int i=1;i<=n;i++) for(int j=maxw;j>=w[i];j--) f[j]=max(f[j],f[j-w[i]]+p[i]); cout<<f[maxw]; return 0; }
- 1
信息
- ID
- 1695
- 时间
- 1000ms
- 内存
- 256MiB
- 难度
- 5
- 标签
- 递交数
- 602
- 已通过
- 225
- 上传者