#include <bits/stdc++.h>
#include <unordered_map>
#include <unordered_set>
using namespace std;
vector<int> pa, rk;
int getParent(int n) {
if (pa[n] == n) return n;
return pa[n] = getParent(pa[n]);
}
void mge(int x, int y) {
if (x == y) return;
if (rk[x] > rk[y]) {
pa[y] = x;
} else if (rk[x] == rk[y]) {
pa[y] = x;
rk[x]++;
} else {
pa[x] = y;
}
}
int main() {
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
int N, M, A, B, x, y;
char T;
cin >> N >> M;
pa.resize(N);
rk.resize(N);
for (int i = 0; i < N; i++) pa[i] = i;
fill(rk.begin(), rk.end(), 0);
unordered_map<int, unordered_set<int>> busadj;
vector<pair<int, int>> bus;
vector<int> ch[N];
while (M--) {
cin >> A >> B >> T;
A--; B--;
if (T == 'T') {
mge(getParent(A), getParent(B));
} else {
bus.push_back(make_pair(A, B));
}
}
for (int i = 0; i < N; i++) {
x = getParent(i);
ch[x].push_back(i);
if (ch[x].size() == N) {
cout << N;
return 0;
}
}
for (pair<int, int> route: bus) {
x = getParent(route.first);
y = getParent(route.second);
//cout << x << " bus " << y << endl;
if (x == y) continue;
busadj[x].insert(y);
busadj[y].insert(x);
}
int C = 0;
for (int i = 0; i < N; i++) {
cout << i << ": ";
for (int c: ch[i]) cout << c << " ";
cout << endl;
}
for (pair<int, unordered_set<int>> station: busadj) {
//cout << station.first << " " << station.second << endl;
cout << station.first << ": ";
for (int s: station.second) cout << s << " ";
cout << endl;
if (station.second.size() + 1 == busadj.size()) {
C += ch[station.first].size();
}
}
cout << C;
return 0;
/*
while (M--) {
cin >> A >> B >> T;
if (T == 'T') {
adjList[A].push_back(make_pair(B, 0));
adjList[B].push_back(make_pair(A, 0));
} else {
adjList[A].push_back(make_pair(B, 1));
adjList[B].push_back(make_pair(A, 1));
}
}*/
}
Compilation message
menesinis_bilietas.cpp: In function 'int main()':
menesinis_bilietas.cpp:58:26: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
58 | if (ch[x].size() == N) {
| ~~~~~~~~~~~~~^~~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
82 ms |
11728 KB |
Output is correct |
2 |
Correct |
1 ms |
600 KB |
Output is correct |
3 |
Incorrect |
1 ms |
348 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
585 ms |
37160 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
600 KB |
Output is correct |
2 |
Incorrect |
1 ms |
348 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
600 KB |
Output is correct |
2 |
Incorrect |
1 ms |
348 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
82 ms |
11728 KB |
Output is correct |
2 |
Correct |
1 ms |
600 KB |
Output is correct |
3 |
Incorrect |
1 ms |
348 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |