zoukankan      html  css  js  c++  java
  • hdu 3371(prim算法)

    题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=3371

    Connect the Cities

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


    Problem Description
    In 2100, since the sea level rise, most of the cities disappear. Though some survived cities are still connected with others, but most of them become disconnected. The government wants to build some roads to connect all of these cities again, but they don’t want to take too much money.  
     
    Input
    The first line contains the number of test cases.
    Each test case starts with three integers: n, m and k. n (3 <= n <=500) stands for the number of survived cities, m (0 <= m <= 25000) stands for the number of roads you can choose to connect the cities and k (0 <= k <= 100) stands for the number of still connected cities.
    To make it easy, the cities are signed from 1 to n.
    Then follow m lines, each contains three integers p, q and c (0 <= c <= 1000), means it takes c to connect p and q.
    Then follow k lines, each line starts with an integer t (2 <= t <= n) stands for the number of this connected cities. Then t integers follow stands for the id of these cities.
     
    Output
    For each case, output the least money you need to take, if it’s impossible, just output -1.
     
    Sample Input
    1
    6 4 3
    1 4 2
    2 6 1
    2 3 5
    3 4 33
    2 1 2
    2 1 3
    3 4 5 6
     
    Sample Output
    1
     
    题目大意:
    这一题也就是一个很简单的prim算法的变形,题意很容易理解,大概是这样的:一场大雨摧毁可很多路,但是还有一些依然存留,所以题目给出了一些路,还给了已经建好的一些,目的是求所有的路全部连通的最小花费。
    在比赛的时候一直想用克鲁斯卡尔,结果不知道是哪里出问题了,一直不能ac,所有。。。。依旧是差这一题ak,在这里反思一下,应该学会转变,不能一直一个思路走下去,结果比赛后,看了这个题目,用prim很容易的解决了,只要在建好路的地图map[a][b]=map[b][a]=0就ok了!还有要注意判重~
     
    详见代码。
     
     1 #include <iostream>
     2 #include <cstdio>
     3 using namespace std;
     4 
     5 int map[1010][1010],r[1010],Min,n,sum,node[1010];
     6 const int INF=9999999;
     7 
     8 void set()
     9 {
    10     for (int i=1; i<=n; i++)
    11     {
    12         node[i]=INF;
    13         for (int j=1; j<=n; j++)
    14             map[i][j]=INF;
    15     }
    16 }
    17 
    18 void prim()
    19 {
    20     int tm=1,m;
    21     int vis[1010]= {0};
    22     node[tm]=0;
    23     vis[tm]=1;
    24     for (int k=2; k<=n; k++)
    25     {
    26         Min=INF;
    27         for (int i=1; i<=n; i++)
    28             if (!vis[i])
    29             {
    30                 if (node[i]>map[tm][i])
    31                     node[i]=map[tm][i];
    32                 if (Min>node[i])
    33                 {
    34                     Min=node[i];
    35                     m=i;
    36                 }
    37             }
    38         tm=m;
    39         sum+=Min;
    40         vis[m]=1;
    41     }
    42 }
    43 
    44 int main ()
    45 {
    46     int T;
    47     cin>>T;
    48     while (T--)
    49     {
    50         sum=0;
    51         int m,k;
    52         scanf("%d%d%d",&n,&m,&k);
    53         set();
    54         for (int i=1; i<=m; i++)
    55         {
    56             int p,q,c;
    57             scanf("%d%d%d",&p,&q,&c);
    58             if (map[p][q]>c)
    59                 map[p][q]=map[q][p]=c;
    60         }
    61         while (k--)
    62         {
    63             int t;
    64             scanf("%d",&t);
    65             for (int i=1; i<=t; i++)
    66             {
    67                 cin>>r[i];
    68             }
    69             for (int i=1; i<=t; i++)
    70             {
    71                 for (int j=1; j<=t; j++)
    72                 {
    73                     map[r[i]][r[j]]=map[r[j]][r[i]]=0;
    74                 }
    75             }
    76         }
    77         prim();
    78         if (sum<INF)
    79         printf ("%d
    ",sum);
    80         else
    81         printf ("-1
    ");
    82     }
    83     return 0;
    84 }
  • 相关阅读:
    AIR 移动设备上的存储控制
    air写文件 SecurityError: fileWriteResource 时报错的解决方法
    [Embed(source="asset.swf")] 使用其中的所有资源
    as3调用外部swf里的类的方法
    Starling性能优化技巧十五则
    air开发中的requestedDisplayResolution 扫盲
    粒子编辑器的选择
    关于粒子..
    清理缓存功能的实现
    SegmentedControl的使用
  • 原文地址:https://www.cnblogs.com/qq-star/p/3941357.html
Copyright © 2011-2022 走看看