hdu 4281 mtsp(多重旅行商问题)

#include
#include
#include
#include
#define MAX(x,y) ((x)>(y)?(x):(y))
#define MIN(x,y) ((x)>(y)?(y):(x))
#define INF 0x3f3f3f3f
using namespace std;
int map[30][30];
int tot,dp[1<<17],dp1[20][1<<17],res[1<<17];
int n,x[200],y[200],ok[1<<17],c[30],m,w[1<<17];
int judge(int x)
{
	int sum=0;
	for(int i=0;im)
	return 0;
	else
	return 1;
} 
void init()
{
	memset(ok,0,sizeof(ok));
	for(int i=0;i=0;j--)
		{
			if(dp[j]!=INF)
			{
				if(j&w[i])
				continue;
				dp[j|w[i]]=MIN(dp[j|w[i]],dp[j]+1);
			}
		}
	}
	return dp[(1<

你可能感兴趣的:(NP问题)