• *HDU3339 最短路+01背包


    In Action

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


    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
     
    题意:
    有n+1个点,m条路,0点是起点,除0点外每个点有一个权值,经过每条路会有相应的油费,若干辆车从0点出发去占领点,要占领一半以上的总权值才行,问最少的油费。
    代码:
     1 //读错题了以为是只有一辆车。算出0点到每个点的最短路,以总路程为容量01背包找出取哪些点权值最大或以总权值为容量01背包出最小路程就行了,01背包又忘了。。。
     2 #include<iostream>
     3 #include<cstdio>
     4 #include<cstring>
     5 #include<cmath>
     6 using namespace std;
     7 const int MAX=10000007;
     8 int mp[102][102],dis[102],vis[102],dp[100005],fei[102];//dp别忘了开大
     9 void dijk(int n)
    10 {
    11     for(int i=0;i<=n;i++)
    12     {
    13         dis[i]=mp[0][i];
    14         vis[i]=0;
    15     }
    16     vis[0]=1;
    17     for(int i=0;i<=n;i++)
    18     {
    19         int Min=MAX,sta=0;
    20         for(int j=0;j<=n;j++)
    21         {
    22             if(!vis[j]&&dis[j]<Min)
    23             {
    24                 Min=dis[j];
    25                 sta=j;
    26             }
    27         }
    28         vis[sta]=1;
    29         for(int j=0;j<=n;j++)
    30         {
    31             if(!vis[j]&&mp[sta][j]!=MAX&&dis[j]>dis[sta]+mp[sta][j])
    32             dis[j]=dis[sta]+mp[sta][j];
    33         }
    34     }
    35 }
    36 int main()
    37 {
    38     int t,n,m,a,b,c;
    39     scanf("%d",&t);
    40     while(t--)
    41     {
    42         scanf("%d%d",&n,&m);
    43         for(int i=0;i<=n;i++)
    44         for(int j=0;j<=n;j++)
    45         mp[i][j]=i==j?0:MAX;
    46         for(int i=0;i<m;i++)
    47         {
    48             scanf("%d%d%d",&a,&b,&c);
    49             mp[a][b]=mp[b][a]=min(mp[a][b],c);
    50         }
    51         int sum=0;
    52         for(int i=1;i<=n;i++)
    53         {scanf("%d",&fei[i]);sum+=fei[i];}
    54         dijk(n);
    55         int V=0;
    56         for(int i=0;i<=n;i++)
    57         {
    58             if(dis[i]!=MAX)       //去掉这样的点
    59             V+=dis[i];
    60         }
    61         memset(dp,0,sizeof(dp));
    62         for(int i=0;i<=n;i++)
    63         {
    64             if(dis[i]==MAX) continue;
    65             for(int j=V;j>=dis[i];j--)
    66             dp[j]=max(dp[j],dp[j-dis[i]]+fei[i]);
    67         }
    68         int flag=0;
    69         for(int i=0;i<=V;i++)
    70         {
    71             if(dp[i]>=sum/2+1)
    72             {
    73                 printf("%d
    ",i);
    74                 flag=1;
    75                 break;
    76             }
    77         }
    78         if(!flag) printf("impossible
    ");
    79     }
    80     return 0;
    81 }
  • 相关阅读:
    dirname,basename的用法与用途
    终极解决方案——sbt配置阿里镜像源,解决sbt下载慢,dump project structure from sbt耗时问题
    linux-manjaro下添加Yahei Hybrid Consola字体
    Idea无法调出搜狗等中文输入法
    Spring 源码学习系列
    BF算法
    Mybatis Mapper接口是如何找到实现类的-源码分析
    Lua脚本在redis分布式锁场景的运用
    GO语言一行代码实现反向代理
    SpringMVC源码分析-400异常处理流程及解决方法
  • 原文地址:https://www.cnblogs.com/--ZHIYUAN/p/6059568.html
Copyright © 2020-2023  润新知