dfs 简单背包问题

#include<stdio.h>
#include<string.h>
#include<math.h>
#include<stdlib.h>
#include<algorithm>
#include<iostream>
#include<queue>
using namespace std;
int weight , n;
int goods[50];
bool judge;
 void dfs(int step,int x)
{
	 if (x == weight) { judge = true; }
	 if (step >= n) { return; }
	 dfs(step + 1, x);
	 dfs(step + 1, x + goods[step]);
}
int main()
{
	while(~scanf("%d %d",&weight,&n))
	{
		judge = false;
		for(int i=0;i<n;i++)
		{
			scanf("%d", &goods[i]);
		}
		dfs(0, 0);
		if(judge==true)
		{
			printf("YES\n");
		}
		else
		{
			printf("NO\n");
		}
	}
	return 0;
}

全部评论

相关推荐

10-06 12:46
门头沟学院 Java
跨考小白:定时任务启动
点赞 评论 收藏
分享
11-27 17:08
已编辑
牛客_产品运营部_私域运营
腾讯 普通offer 24k~26k * 15,年包在36w~39w左右。
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务