HDU - 5418:Victor and World

Victor and World

                                                           Time Limit: 4000/2000 MS (Java/Others)    Memory Limit: 262144/131072 K (Java/Others)
                                                                                  Total Submission(s): 1670    Accepted Submission(s): 786


Problem Description
After trying hard for many years, Victor has finally received a pilot license. To have a celebration, he intends to buy himself an airplane and fly around the world. There are  n countries on the earth, which are numbered from  1 to  n. They are connected by  m undirected flights, detailedly the  i-th flight connects the  ui-th and the  vi-th country, and it will cost Victor's airplane  wi L fuel if Victor flies through it. And it is possible for him to fly to every country from the first country.

Victor now is at the country whose number is  1, he wants to know the minimal amount of fuel for him to visit every country at least once and finally return to the first country.
 

Input
The first line of the input contains an integer  T, denoting the number of test cases.
In every test case, there are two integers  n and  m in the first line, denoting the number of the countries and the number of the flights.

Then there are  m lines, each line contains three integers  ui vi and  wi, describing a flight.

1T20.

1n16.

1m100000.

1wi100.

1ui,vin.
 

Output
Your program should print  T lines : the  i-th of these should contain a single integer, denoting the minimal amount of fuel for Victor to finish the travel.
 

Sample Input
 
   
1 3 2 1 2 2 1 3 3
 

Sample Output
 
   
10

思路:因为每个城市可以访问多次(至少一次),用Floyd算法求出任意两点间最短路。然后再用状压DP。

#include
using namespace std;
long long d[1<<16][16],w[16][16];
int main()
{
	int T,n,m;cin>>T;
	while(T--)
	{
		cin>>n>>m;
		memset(d,0x3f3f3f3f,sizeof d);
		memset(w,0x3f3f3f3f,sizeof w);
		for(int i=0;i>x>>y>>v;
			w[x-1][y-1]=w[y-1][x-1]=min(w[x-1][y-1],v);
		}
		for(int i=0;i



你可能感兴趣的:(状压DP,ACM,状压DP)