代码拉取完成,页面将自动刷新
同步操作将从 charlieshu/Algorithms 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
#include <iostream>
#include <math.h>
#include <string.h>
#include <stack>
#include <queue>
using namespace std;
struct item{
int weight,value,father;
queue<int> son;
};
int main(){
int n,m;
cin>>n>>m;
stack<int> sta;
item a[m+1];
int dp[m+1][n+1];
memset(dp,0,sizeof(dp));
a[0].value = 0;
a[0].weight = 0;
for(int i=1;i<=m;i++){
int w,v,f;
cin>>w>>v>>f;
a[i].weight = w;
a[i].value = v*w;
a[i].father = f;
a[f].son.push(i);
}
sta.push(0);
// int i=0;
while(!sta.empty()){
// i++;
// cout<<i<<endl;
if(!a[sta.top()].son.empty()){
int index;
sta.push(a[index=sta.top()].son.front());
a[index].son.pop();
continue;
}
int now=sta.top();
if(now == 0)
break;
for(int i=n-a[now].weight;i>=0;i--){
for(int j=0;j<=i;j++)
dp[a[now].father][i+a[now].weight] = max(dp[a[now].father][i+a[now].weight],dp[a[now].father][i-j]+dp[now][j]+a[now].value);
}
sta.pop();
}
// for(int i=0;i<=m;i++){
// for(int j=0;j<=n;j++)
// cout<<dp[i][j]<<" ";
// cout<<endl<<endl;
// }
cout<<dp[0][n];
return 0;
}
/*
10 5
3 5 0
4 2 0
3 5 2
3 4 2
6 4 0
*/
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。