hdu 3339 In Action(最短路spfa+01背包)

来源:互联网 发布:中国网络诗歌网为什么 编辑:程序博客网 时间:2024/04/28 13:27

In Action

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 4423    Accepted Submission(s): 1439


Problem Description

Since 1945, when the first nuclear bomb was exploded by the Manhattan Project team in the US, the number of nuclear weapons have soared across the globe.
Nowadays,the crazy boy in FZU named AekdyCoin possesses some nuclear weapons and wanna destroy our world. Fortunately, our mysterious spy-net has gotten his plan. Now, we need to stop it.
But the arduous task is obviously not easy. First of all, we know that the operating system of the nuclear weapon consists of some connected electric stations, which forms a huge and complex electric network. Every electric station has its power value. To start the nuclear weapon, it must cost half of the electric network's power. So first of all, we need to make more than half of the power diasbled. Our tanks are ready for our action in the base(ID is 0), and we must drive them on the road. As for a electric station, we control them if and only if our tanks stop there. 1 unit distance costs 1 unit oil. And we have enough tanks to use.
Now our commander wants to know the minimal oil cost in this action.
 

Input
The first line of the input contains a single integer T, specifying the number of testcase in the file.
For each case, first line is the integer n(1<= n<= 100), m(1<= m<= 10000), specifying the number of the stations(the IDs are 1,2,3...n), and the number of the roads between the station(bi-direction).
Then m lines follow, each line is interger st(0<= st<= n), ed(0<= ed<= n), dis(0<= dis<= 100), specifying the start point, end point, and the distance between.
Then n lines follow, each line is a interger pow(1<= pow<= 100), specifying the electric station's power by ID order.
 

Output
The minimal oil cost in this action.
If not exist print "impossible"(without quotes).
 

Sample Input
22 30 2 92 1 31 0 2132 12 1 313
 

Sample Output
5impossible
 

Author
Lost@HDU
题目分析:
利用最短路求出到达每个点的耗油,然后利用01背包求取到达一半电量的最少花费
#include <iostream>#include <algorithm>#include <cstring>#include <cstdio>#include <queue>#define MAX 107using namespace std;int t,n,m;int INF;int mp[MAX][MAX];int a[MAX];int dis[MAX];bool used[MAX];int dp[MAX*MAX];void spfa ( ){    queue<int> q;    memset ( dis , 0x3f , sizeof ( dis ) );    INF = dis[0];    memset ( used , 0 , sizeof ( used ) );    used[0] = 1;    q.push ( 0 );    dis[0] = 0;    while ( !q.empty( ) )    {        int u = q.front();        q.pop ( );        used[u] = 0;        for ( int i = 1 ; i <= n ; i++ )        {            if ( dis[i] <= dis[u] + mp[u][i] ) continue;            dis[i] = dis[u] + mp[u][i];            if ( used[i] ) continue;            q.push ( i );            used[i] = true;        }    }}int main ( ){    scanf ( "%d" , &t );    int u,v,w;    while ( t-- )    {        memset ( mp , 0x3f , sizeof ( mp ) );        scanf ( "%d%d" , &n , &m );        for ( int i = 0 ; i < m ; i++ )        {            scanf ( "%d%d%d" , &u , &v , &w );            mp[u][v] = mp[v][u] = min ( mp[u][v] , w );        }        int sum = 0;        for ( int i = 1 ; i <= n ; i++ )        {            scanf ( "%d" , &a[i] );            sum += a[i];        }        sum = sum/2+1;        spfa ( );        memset ( dp , 0x3f , sizeof ( dp ) );        const int flag = dp[0];        dp[0] = 0;        for ( int i = 1 ; i <= n ; i++ )            for ( int j = sum-1 ; j >= 0 ; j-- )                if ( j + a[i] > sum ) dp[sum] = min ( dp[sum] , dp[j] + dis[i] );                else dp[j+a[i]] = min ( dp[j+a[i]] , dp[j] + dis[i] );        if ( dp[sum] == flag ) puts ( "impossible" );        else printf ( "%d\n" , dp[sum] );    }}


0 0
原创粉丝点击