【狀壓DP】旅行商問題

來源:互聯網
上載者:User

標籤:

給定一張帶權有向圖,要求從頂點0出發,經過每個結點恰好一次後再返回0,求邊權和的最小值。

2<=n<=15

0<=d(i,j)<=1000

 

範例

5 8
0 1 3
0 3 4
1 2 5
2 0 4
2 3 5
3 4 3
4 0 7
4 1 6

 

dp[S][U]=min{dp[S∪{V}][V]+d(U,V)|V∉S&&d(U,V)!=INF},

d[(1<<n)-1][0]=0.

 

O(2^n*n^2)

#include<cstdio>#include<cstring>#include<algorithm>using namespace std;#define N 16#define INF 214748364#define M 250int n,m;int v[M<<1],w[M<<1],first[N],next[M<<1],en;void AddEdge(int U,int V,int W){v[++en]=V;w[en]=W;next[en]=first[U];first[U]=en;}int dp[(1<<N)+1][N];int f(int S,int U){if(dp[S][U]!=-1) return dp[S][U];if(S==(1<<n)-1&&(!U)) return dp[S][U]=0;int res=INF;for(int i=first[U];i;i=next[i])  if(!(S>>v[i]&1))    res=min(res,f(S|(1<<v[i]),v[i])+w[i]);return dp[S][U]=res;}int main(){int x,y,z;scanf("%d%d",&n,&m);for(int i=1;i<=m;++i)  {  scanf("%d%d%d",&x,&y,&z);  AddEdge(x,y,z);  }memset(dp,-1,sizeof(dp));printf("%d\n",f(0,0));return 0;}

【狀壓DP】旅行商問題

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.