-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy path459-d.cpp
73 lines (59 loc) · 1.32 KB
/
459-d.cpp
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef vector<ll> vi;
typedef vector<vi> vvi;
const int mod = 1000000007;
const int sze = 100010;
vi g[30];
int toInt(char c) { return c - 'A';}
void bfs(int src, vector<bool>& visited) {
queue<int> q;
q.push(src);
visited[src] = true;
while(!q.empty()){
int cur = q.front();
q.pop();
for(int i = 0; i < (int)g[cur].size(); ++i){
int v = g[cur][i];
if (visited[v] == false){
q.push(v);
visited[v] = true;
}
}
}
}
int connectedComponents(int n){
vector<bool> visited;
visited.assign(n, false);
int cc = 0;
for (int ver = 0; ver < n; ++ver) {
if (!visited[ver]) {
bfs(ver, visited);
++cc;
}
}
return cc;
}
int main() {
int t;
cin >> t;
char inp[100];
cin.getline(inp, 100); //consumes all the whitespace after t
cin.getline(inp , 100); //consumes the first line
while (t--) {
char n; cin >> n;
int N = toInt(n) + 1;
cin.getline(inp, 100);
//reading edges
while (cin.getline(inp, 100) && strlen(inp) > 0) {
g[toInt(inp[0])].push_back(toInt(inp[1]));
g[toInt(inp[1])].push_back(toInt(inp[0]));
}
cout << connectedComponents(N) << "\n";
//output of the two consecutive shall be seperated by a blank line
if (t)
cout << "\n";
for(auto& v : g) v.clear(); //clearing all adjlists in the g array
}
}