PAT 1013 Battle Over Cities (25 分)

题意就是问你图中去掉一个点剩余的部分需要最少修几条路可以再次保证联通?

解法

我最初是想着把他们弄成点,然后10分,看网上老哥做法是看成联通快,把剩余的部分看成图,最后求图路径就是联通块个数-1即可

代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#include <bits/stdc++.h>
using namespace std;
vector<int> G[2333];
int mk[2333],ans[2333],sum;
void dfs(int p)
{
for(int i=0;i<G[p].size();i++)
if(!mk[G[p][i]])
{
mk[G[p][i]]=1;
dfs(G[p][i]);
}
}
int main()
{
ios::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
int n,m,k;
cin>>n>>m>>k;
while(m--)
{
int st,ed;
cin>>st>>ed;
G[st].push_back(ed);
G[ed].push_back(st);
}
while(k--)
{
int now;
cin>>now;
int sum=0;
memset(mk,0,sizeof(mk));
mk[now]=1;
for(int j=1;j<=n;j++)
if(!mk[j])
{
dfs(j);
sum++;
}
cout<<sum-1<<"\n";
}
}
就算是一分钱,也是对作者极大的支持
------ 本文结束 ------

版权声明

Baccano by baccano is licensed under a Creative Commons BY-NC-ND 4.0 International License.
baccano创作并维护的Baccano博客采用创作共用保留署名-非商业-禁止演绎4.0国际许可证
本文首发于baccano 博客( http://baccano.fun ),版权所有,侵权必究。

小游戏

---小游戏:要不要来选择一下自己可能的老婆?---

简易发声器

---简易的七键钢琴插件---

可以使用鼠标点击琴键也可以使用主键盘1-7或者小键盘的1-7来操作

那么现在开始吧

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
0%