#include <bits/stdc++.h>
using namespace std;
void dfs(int n, vector<vector<int>>& g, vector<bool>& v) {
v[n] = true;
for (int e : g[n]) {
if (!v[e]) {
dfs(e, g, v);
}
}
}
int c(int N, vector<pair<int, int>>& d) {
vector<vector<int>> g(N);
for (auto d : d) {
g[d.first].push_back(d.second);
g[d.second].push_back(d.first);
}
vector<bool> v(N, false);
int u = 0;
for (int i = 0; i < N; ++i) {
if (!v[i]) {
u++;
dfs(i,g,v);
}
}
return u;
}
int main() {
int N, E;
cin >> N >> E;
vector<pair<int, int>> d(E);
for (int i = 0; i < E; ++i) {
char sodifjsd;
cin >> d[i].first >> d[i].second >> sodifjsd;
}
cout << c(N,d);
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
328 ms |
33676 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
6 ms |
11352 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
1 ms |
348 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
1 ms |
348 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
1 ms |
348 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |