HDU-1258-Sum It Up

HDU-1258-Sum It Up

http://acm.hdu.edu.cn/showproblem.php?pid=1258

注意每个数只能用一次,且不能出现重复的等式

#include
#include
#include
int a[20],ans[20];
int sum,n,flag;
void dfs(int x,int count,int m)
{
	int i,last;
	if(m>sum)
	return;
	if(m==sum)
	{
		flag=1;
		for(i=1;i


你可能感兴趣的:(HDU-1258-Sum It Up)