1 Star 0 Fork 0

ashley/Algorithm

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
backpack_01_baoli.cpp 481 Bytes
一键复制 编辑 原始数据 按行查看 历史
ashley 提交于 2021-09-09 04:30 . backpack
#include <iostream>
#include <cstring>
#include <algorithm>
using namespace std;
const int N = 1010;
int n , m;
int v[N] , w[N];
int dp[N][N];
int main(){
scanf("%d%d", &n, &m);
for(int i = 1 ; i <= n ; ++i) scanf("%d%d", &v[i], &w[i]);
for(int i = 1 ; i <= n ; ++i){
for(int j = 0 ; j <= m ; ++j){
dp[i][j] = max(dp[i][j] , dp[i][j - v[i]] + w[i]);
}
}
printf("%d\n" , dp[n][m]);
return 0;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/ashleyZZ/algorithm.git
git@gitee.com:ashleyZZ/algorithm.git
ashleyZZ
algorithm
Algorithm
master

搜索帮助