Newguy


私信TA

用户名:772007765

访问量:82121

签 名:

已秃人士

等  级
排  名 28
经  验 14599
参赛次数 3
文章发表 92
年  龄 0
在职情况 在职
学  校
专  业

  自我简介:

TA的其他文章

隐匿踪迹
浏览:398
蓝桥杯算法提高VIP-产生数
浏览:957
游花园
浏览:939

解题思路:

#include <stdio.h>      //基因突变版背包问题  "人人为我"递推dp  变量名都太长了···
#define max(x,y) x>y?x:y   
struct {
	int money;
	int important;
} things[61][3]={0,0};          //物品的基本信息
int main()
{
	int n,maxmoney;
	int bag[32000]={0};             //背包
	int i,j;
	int money,important,attchment;

	scanf("%d%d",&maxmoney,&n);
	for (i=1;i<=n;i++)
	{
		scanf("%d%d%d",&money,&important,&attchment);
		if (!attchment)
		{
			things[i][0].money=money;
			things[i][0].important=important;
		}
		else
		{
			if (!things[attchment][1].money)
			{
				things[attchment][1].money=money;
				things[attchment][1].important=important;
			}
			else
			{
				things[attchment][2].money=money;
				things[attchment][2].important=important;
			}
		}
	}
	for (i=1;i<=n;i++)
	{
		if (!things[i][0].money)      //如果不是主件跳过
			continue;
		for (j=maxmoney;j>=things[i][0].money;j--)
		{
			bag[j]=max(bag[j],bag[j-things[i][0].money]+things[i][0].money*things[i][0].important);
			if (j>=things[i][0].money+things[i][1].money)
				bag[j]=max(bag[j],bag[j-things[i][0].money-things[i][1].money]+things[i][0].money*things[i][0].important+things[i][1].money*things[i][1].important);
			if (j>=things[i][0].money+things[i][2].money)
				bag[j]=max(bag[j],bag[j-things[i][0].money-things[i][2].money]+things[i][0].money*things[i][0].important+things[i][2].money*things[i][2].important);
			if (j>=things[i][0].money+things[i][1].money+things[i][2].money)
				bag[j]=max(bag[j],bag[j-things[i][0].money-things[i][1].money-things[i][2].money]+things[i][0].money*things[i][0].important+things[i][1].money*things[i][1].important+things[i][2].money*things[i][2].important);
		}
	}
	printf("%d",bag[maxmoney]);
	return 0;
}





注意事项:





参考代码:

 

0.0分

0 人评分

看不懂代码?想转换其他语言的代码? 或者想问其他问题? 试试问问AI编程助手,随时响应你的问题:

编程语言转换万能编程问答  

代码解释器

代码纠错

SQL生成与解释

  评论区