Hie with the Pie(POJ 3311)狀壓DP

來源:互聯網
上載者:User

標籤:rom   dir   Once   ogr   sed   ati   different   iss   最小   

Description

The Pizazz Pizzeria prides itself in delivering pizzas to its customers as fast as possible. Unfortunately, due to cutbacks, they can afford to hire only one driver to do the deliveries. He will wait for 1 or more (up to 10) orders to be processed before he starts any deliveries. Needless to say, he would like to take the shortest route in delivering these goodies and returning to the pizzeria, even if it means passing the same location(s) or the pizzeria more than once on the way. He has commissioned you to write a program to help him.

Input

Input will consist of multiple test cases. The first line will contain a single integer n indicating the number of orders to deliver, where 1 ≤ n ≤ 10. After this will be n + 1 lines each containing n + 1 integers indicating the times to travel between the pizzeria (numbered 0) and the n locations (numbers 1 to n). The jth value on the ith line indicates the time to go directly from location i to location j without visiting any other locations along the way. Note that there may be quicker ways to go from i to j via other locations, due to different speed limits, traffic lights, etc. Also, the time values may not be symmetric, i.e., the time to go directly from location i to j may not be the same as the time to go directly from location j to i. An input value of n = 0 will terminate input.

Output

For each test case, you should output a single number indicating the minimum time to deliver all of the pizzas and return to the pizzeria.

Sample Input

30 1 10 101 0 1 210 1 0 1010 2 10 00

Sample Output

8
題目大意:給你 n 個目的地,以 0 為起點,給出一個鄰接矩陣,求經過每個點最後返回 起點0 的最小距離

冉了我一上午的狀壓DP,但總算解決啦

 

代碼^-^

#include<stdio.h>#include<string.h>#include<algorithm>using namespace std;int f[20][2050],dis[20][20];int main(){    int n,size;    while(scanf("%d",&n)!=EOF)    {        if(n==0) break;        n++;        size=(1<<n)-1;        memset(dis,13,sizeof(dis));        for(int i=1;i<=n;++i)            for(int j=1;j<=n;++j) {                int temp;                scanf("%d",&temp);                if(i!=j) dis[i][j]=temp;            }                    for(int k=1;k<=n;++k)            for(int i=1;i<=n;++i)                for(int j=1;j<=n;++j)                    if(i!=j)                        dis[i][j]=min(dis[i][j],dis[i][k]+dis[k][j]);                memset(f,13,sizeof(f));        for(int i=2;i<=n;++i) f[i][1<<(i-1)]=dis[1][i];                for(int j=1;j<=size;++j)            for(int i=1;i<=n;++i) {                if( j&(1<<(i-1)) )                     for(int k=1;k<=n;++k) {                        if( j&(1<<(k-1)) )                            f[i][j]=min(f[i][j],f[k][ j& ~(1<<(i-1)) ]+dis[k][i]);                    }            }        printf("%d\n",f[1][size]);    }    return 0;}

 

學長噠

#include<cstdio>#include<cstring>#include<algorithm>using namespace std;int co[15][15],f[15][2050],dis[15][15];int main(){    int n,siz;    while(scanf("%d",&n)!=EOF)    {        if(n==0) break;        memset(dis,0x3f,sizeof(dis));        n++;        siz=(1<<n)-1;        for(int i=1;i<=n;i++)            for(int j=1;j<=n;j++)            {                scanf("%d",&co[i][j]);                if(i!=j) dis[i][j]=co[i][j];            }                for(int i=1;i<=n;i++)//            for(int j=1;j<=n;j++)                if(i!=j)                    for(int k=1;k<=n;k++)                        if(k!=j&&k!=i)                            dis[j][k]=min(dis[j][k],dis[j][i]+dis[i][k]);                memset(f,0x3f,sizeof(f));//        for(int i=2;i<=n;i++) f[i][(1<<(i-1))]=dis[1][i];                 for(int j=1;j<=siz;j++)//            for(int i=1;i<=n;i++)                if( j&(1<<(i-1)) )//*                    for(int k=1;k<=n;k++)                        if( j&(1<<(k-1)) ) {                            f[i][j]=min(f[i][j],f[k][ j& ~(1<<(i-1)) ]+dis[k][i]);                        }                                    printf("%d\n",f[1][siz]);    }    return 0;}

 

 

Hie with the Pie(POJ 3311)狀壓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.