Created
September 5, 2019 23:16
-
-
Save surinoel/db5d77ba556779bfbc6de88134836723 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <vector> | |
#include <iostream> | |
using namespace std; | |
bool visit[1001]; | |
vector<int> a[1001]; | |
void go(int idx) { | |
if (visit[idx]) { | |
return; | |
} | |
visit[idx] = true; | |
for (int i = 0; i < a[idx].size(); i++) { | |
go(a[idx][i]); | |
} | |
return; | |
} | |
int main(void) { | |
ios_base::sync_with_stdio(false); | |
cin.tie(nullptr); | |
int n, m; | |
cin >> n >> m; | |
for (int i = 0; i < m; i++) { | |
int x, y; | |
cin >> x >> y; | |
a[x].push_back(y); | |
a[y].push_back(x); | |
} | |
int ans = 0; | |
for (int i = 1; i <= n; i++) { | |
if (!visit[i]) { | |
ans += 1; | |
go(i); | |
} | |
} | |
cout << ans << '\n'; | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment