zoukankan      html  css  js  c++  java
  • HDOJ 3339 In Action


    最短路+01背包

    In Action

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


    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
    2 2 3 0 2 9 2 1 3 1 0 2 1 3 2 1 2 1 3 1 3
     

    Sample Output
    5 impossible
     

    Author
    Lost@HDU
     

    Source
     


    #include <iostream>
    #include <cstring>
    #include <cstdio>
    #include <algorithm>
    
    using namespace std;
    
    const int INF=0x3f3f3f3f;
    
    int n,m;
    int dist[110],vis[110],power[110];
    int g[110][110];
    int dp[11000];
    
    void dijkstra()
    {
        memset(dist,63,sizeof(dist));
        memset(vis,0,sizeof(vis));
    
        dist[0]=0;
    
        for(int j=0;j<=n;j++)
        {
            int mark=-1,mindist=INF;
            for(int i=0;i<=n;i++)
            {
                if(vis[i]) continue;
                if(mindist>dist[i])
                {
                    mindist=dist[i]; mark=i;
                }
            }
    
            if(mark==-1) break;
            vis[mark]=1;
    
            for(int i=0;i<=n;i++)
            {
                if(vis[i]) continue;
                dist[i]=min(dist[i],dist[mark]+g[mark][i]);
            }
        }
    }
    
    int main()
    {
        int T_T;
        scanf("%d",&T_T);
        while(T_T--)
        {
            memset(g,63,sizeof(g));
    
            scanf("%d%d",&n,&m);
    
            for(int i=0;i<m;i++)
            {
                int a,b,c;
                scanf("%d%d%d",&a,&b,&c);
                g[a][b]=g[b][a]=min(g[a][b],c);
            }
    
            dijkstra();
    
            int sumd=0,sum=0;
    
            for(int i=1;i<=n;i++)
            {
                scanf("%d",power+i);
                if(dist[i]!=INF) sumd+=dist[i];
                sum+=power[i];
            }
    
            memset(dp,0,sizeof(dp));
    
            for(int i=1;i<=n;i++)
            {
                if(dist[i]==INF) continue;
                for(int j=sumd;j>=dist[i];j--)
                {
                    dp[j]=max(dp[j],dp[j-dist[i]]+power[i]);
                }
            }
            int ans=-1,low=0,high=sumd,mid;
            while(low<=high)
            {
                mid=(low+high)/2;
                if(dp[mid]*2>sum)
                    ans=mid,high=mid-1;
                else low=mid+1;
            }
    
            if(ans==-1)
                puts("impossible");
            else printf("%d
    ",ans);
        }
        return 0;
    }
    



  • 相关阅读:
    Access Update 不支持子查询 用查询解决
    vs2005中文乱码
    清理sql日志
    VS2005快捷键使用
    如何用C#改文件名
    C#中使用DirectSound录音
    VS2005打包 到没有.NETFramework2.0的目标机器上安装
    Access中iif,isnull的用法
    水晶报表切换字段视图不能用的问题。
    VS2005中TextBox的ReadOnly属性
  • 原文地址:https://www.cnblogs.com/yfceshi/p/6928522.html
Copyright © 2011-2022 走看看