• 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;
    }
    



  • 相关阅读:
    将10进制数字转成62进制数字(转)
    admin添加用户时报错:(1452, 'Cannot add or update a child row: a foreign key constraint fails (`mxonline`.`django_admin_l
    Django admin 中抛出 'WSGIRequest' object has no attribute 'user'的错误
    分布式爬虫
    Scrapy之CrawlSpider
    Scrapy之Cookie和代理
    Scrapy核心组件
    scrapy之持久化存储
    Scrapy框架的基本使用
    爬虫之request模块高级
  • 原文地址:https://www.cnblogs.com/yfceshi/p/6928522.html
Copyright © 2020-2023  润新知