Light oj 1086 - Jogging Trails(状压dp 将图变成欧拉图)

1086 - Jogging Trails
Time Limit: 2 second(s)Memory Limit: 32 MB

Robin is training for a marathon. Behind his house is a park with a large network of jogging trails connecting water stations. Robin wants to find the shortest jogging route that travels along every trail at least once.

For each case, there should be one line of output giving the length of Robin's jogging route.

Input

Input starts with an integer T (≤ 100), denoting the number of test cases.

Each case contains two positive integers n (2 ≤ n ≤ 15), the number of water stations, and m (0 ≤ 1000), the number of trails. For each trail, there is one subsequent line of input containing three positive integers: the first two, between 1 and n, indicating the water stations at the end points of the trail; the third indicates the length of the trail, in cubits. There may be more than one trail between any two stations; each different trail is given only once in the input; each trail can be travelled in either direction. It is possible to reach any trail from any other trail by visiting a sequence of water stations connected by trails. Robin's route may start at any water station, and must end at the same station.

Output

For each case, print the case number and the minimum possible length of Robin's jogging route

Sample Input

Output for Sample Input

1

4 5

1 2 3

2 3 4

3 4 5

1 4 10

1 3 12

Case 1: 41

 


PROBLEM SETTER: GORDON V. CORMACK
SPECIAL THANKS: JANE ALAM JAN (SOLUTION, DATASET)




#pragma comment(linker, "/STACK:1024000000,1024000000")
#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
#include<cmath>
#include<queue>
#include<stack>
#include<vector>
#include<set>
#include<map>

#define L(x) (x<<1)
#define R(x) (x<<1|1)
#define MID(x,y) ((x+y)>>1)

#define bug printf("hihi\n")

#define eps 1e-12

typedef long long ll;

using namespace std;
#define INF 0x3f3f3f3f
#define N 16

int dp[1<<N];
int n,m;
int a[N][N];
int in[N];

void floyd()
{
    int i,j,k;
    for(int k=1;k<=n;k++)
        for(int i=1;i<=n;i++)
            for(int j=1;j<=n;j++)
                a[i][j]=min(a[i][j],a[i][k]+a[k][j]);
}

void DP()
{
    int i,j;
    floyd();
    memset(dp,INF,sizeof(dp));
    int len=1<<n;
    dp[len-1]=0;
    for(int cur=len-1;cur>=0;cur--)
    {
        for(int i=1;i<=n;i++)
        {
            if(!(cur&(1<<(i-1)))) continue;

            if(!(in[i]&1))
            {
                int to=cur^(1<<(i-1));
                dp[to]=min(dp[to],dp[cur]);
                continue;
            }
            for(int j=1;j<=n;j++)
            {
                if(in[j]%2==0) continue;
                if(i==j) continue;
                int to=cur^(1<<(i-1))^(1<<(j-1));
                dp[to]=min(dp[to],dp[cur]+a[i][j]);
            }
        }
    }

}
int main()
{
    int i,j,all,t,ca=0;
    scanf("%d",&t);
    while(t--)
    {
        scanf("%d%d",&n,&m);
        memset(a,INF,sizeof(a));
        int u,v,len;
        all=0;
        memset(in,0,sizeof(in));
        while(m--)
        {
             scanf("%d%d%d",&u,&v,&len);
             if(len<a[u][v]) a[u][v]=a[v][u]=len;
             all+=len;
             in[u]++;
             in[v]++;
        }
        DP();
        printf("Case %d: %d\n",++ca,dp[0]+all);
    }
    return 0;
}


  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值