• hdu 5438 Ponds(长春网络赛 拓扑+bfs)


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

    Ponds

    Time Limit: 1500/1000 MS (Java/Others)    Memory Limit: 131072/131072 K (Java/Others)
    Total Submission(s): 2237    Accepted Submission(s): 707


    Problem Description
    Betty owns a lot of ponds, some of them are connected with other ponds by pipes, and there will not be more than one pipe between two ponds. Each pond has a value v.

    Now Betty wants to remove some ponds because she does not have enough money. But each time when she removes a pond, she can only remove the ponds which are connected with less than two ponds, or the pond will explode.

    Note that Betty should keep removing ponds until no more ponds can be removed. After that, please help her calculate the sum of the value for each connected component consisting of a odd number of ponds
     
    Input
    The first line of input will contain a number T(1T30) which is the number of test cases.

    For each test case, the first line contains two number separated by a blank. One is the number p(1p104) which represents the number of ponds she owns, and the other is the number m(1m105) which represents the number of pipes.

    The next line contains p numbers v1,...,vp, where vi(1vi108) indicating the value of pond i.

    Each of the last m lines contain two numbers a and b, which indicates that pond a and pond b are connected by a pipe.
     
    Output
    For each test case, output the sum of the value of all connected components consisting of odd number of ponds after removing all the ponds connected with less than two pipes.
     
    Sample Input
    1
    7 7
    1 2 3 4 5 6 7
    1 4
    1 5
    4 5
    2 3
    2 6
    3 6
    2 7
     
    Sample Output
    21
     
    Source
     
    题目大意:有一些池塘,每一个池塘都有一个价值,现在想删除一些池塘。
    有如下删除条件:1、一个池塘有两个管道连接的不可以删除。
    2、求最后剩下的为奇数环的池塘的价值。
     
    解题思路:用拓扑将所有入度为0和1的点都可以删掉,直到删完为止。在一个点一个点搜过去,判断环中是否为奇数个池塘。如果可以就return和,否则就不加,return0即可。
     
    详见代码。
     1 #include <iostream>
     2 #include <cstdio>
     3 #include <cstring>
     4 #include <vector>
     5 #include <queue>
     6 
     7 using namespace std;
     8 #define ll long long
     9 const int N=10010;
    10 
    11 ll p,m,v[N],vis[N],indir[N];
    12 vector<ll>G[N];
    13 
    14 ll bfs(ll x)
    15 {
    16     queue<ll>q;
    17     q.push(x);
    18     vis[x]=1;
    19     ll k=0;
    20     ll sum=v[x];
    21     while (!q.empty())
    22     {
    23 
    24         int s=q.front();
    25         q.pop(); //cout<<s<<endl;
    26         k++;
    27         for (int i=0; i<G[s].size(); i++)
    28         {
    29             if (!vis[G[s][i]]&&indir[G[s][i]]>=2)//删掉的点不可以加进来
    30             {
    31                 sum+=v[G[s][i]];
    32                 q.push(G[s][i]);
    33                 vis[G[s][i]]=1;
    34             }
    35         }
    36     }
    37     if (k>=3&&k%2==1)
    38         return sum;
    39     else
    40         return 0;
    41 }
    42 
    43 int main()
    44 {
    45     int T,a,b;
    46     scanf("%d",&T);
    47     while (T--)
    48     {
    49         scanf("%lld%lld",&p,&m);
    50         memset(vis,0,sizeof(vis));
    51         memset(G,0,sizeof(G));
    52         memset(indir,0,sizeof(indir));
    53         for (int i=1; i<=p; i++)
    54         {
    55             scanf("%lld",&v[i]);
    56         }
    57         for (int i=1; i<=p; i++)
    58             G[i].clear();
    59         for (int i=1; i<=m; i++)
    60         {
    61             scanf("%d%d",&a,&b);
    62             G[a].push_back(b);//将b放在a队列的最后一个
    63             G[b].push_back(a);
    64             indir[a]++;
    65             indir[b]++;
    66         }
    67         int j;
    68         for (int i=1; i<=p; i++)
    69         {
    70             for ( j=1; j<=p; j++)
    71             {
    72                 if (indir[j]==0||indir[j]==1)
    73                 {
    74                     break;
    75                 }
    76             }
    77             if (j>p)
    78                 break;
    79             indir[j]=-1;
    80             for (int k=0; k<G[j].size(); k++)
    81             {
    82                 indir[G[j][k]]--;
    83             }
    84         }
    85         ll ans=0;
    86         for (int i=1; i<=p; i++)//搜遍所有的环
    87             if (!vis[i]&&indir[i]>=2)
    88                 ans+=bfs(i);
    89         cout<<ans<<endl;
    90     }
    91     return 0;
    92 }
  • 相关阅读:
    获取本机ip地址以及主机名称
    java导出excel
    plsql连接远程数据库
    Several ports (8005, 8080, 8009) required by Tomcat v7.0 Server at localhost are already in use.解决办法
    导出项目文件到本地指定目录(zip)
    java集合对字符串或对象去重
    js文字转语音播放
    java实现的Excel批量导入
    字符串分割的实现
    所生成项目的处理器架构“MSIL”与 “x86”不匹配
  • 原文地址:https://www.cnblogs.com/qq-star/p/4827100.html
Copyright © 2020-2023  润新知