01背包问题(递归)

01背包问题的递归法求解

 

int GetMaxScore(int h, int w[], int s[], int CourseCount)
{
	if (CourseCount == 0 )
	{
		return 0;
	}
	else {
		int Score1 = GetMaxScore(h, w, s, CourseCount - 1);
		int Score2 = GetMaxScore(h - w[CourseCount-1], w, s, CourseCount - 1) + s[CourseCount-1];
//注意第n节课的数组下标为n-1!!!
		if (h < w[CourseCount - 1])
		{
			return Score1;
		}
		else {
			return Score1 > Score2 ? Score1 : Score2;
		}
	}
}

精髓在于理解动态变化过程:

  设 f(h,n) 为总时间h,考虑前n节课时可获得的最高分,则:

        一、若第n节课时时间不够,即 h<w[n-1] ,则f(h,n)=f(h,n-1)

        二、若时间足够:

                1)不选这门课,则分数为f(h,n-1)

                2)  选这门课,则分数为s[n-1]+f(h-w[n-1] , n-1)

                ( 注意数组下标与课程序号差1)

main函数:

#include <stdio.h>
int main(void)
{
	int CourseCount = 0;
	int TotalTime = 0;
	int EachTime[10] = { 0 };
	int Score[10] = { 0 };
//Importing Data
	scanf("%d", &TotalTime);
	scanf("%d", &CourseCount);
	for (int i = 0; i < CourseCount; i++)
	{
		scanf("%d", &EachTime[i]);
	}
	for (int i = 0; i < CourseCount; i++)
	{
		scanf("%d", &Score[i]);
	}
//Output
	printf("%d", GetMaxScore(TotalTime, EachTime, Score, CourseCount));
	return 0;
}

因为正在学习递归故如此求解

也可尝试dp的方式

 

  • 0
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值