• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
若忆_star
博客园    首页    新随笔    联系   管理    订阅  订阅
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(1≤T≤30) 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(1≤p≤104) which represents the number of ponds she owns, and the other is the number m(1≤m≤105) which represents the number of pipes.

The next line contains p numbers v1,...,vp, where vi(1≤vi≤108) 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
2015 ACM/ICPC Asia Regional Changchun Online
 
题目大意:有一些池塘,每一个池塘都有一个价值,现在想删除一些池塘。
有如下删除条件: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 }

 

posted on 2015-09-21 19:48  若忆_star  阅读(366)  评论(0)    收藏  举报
刷新页面返回顶部
博客园  ©  2004-2025
浙公网安备 33010602011771号 浙ICP备2021040463号-3