https://www.welcomekakao.com/learn/courses/30/lessons/43162
DFS혹은 BFS를 활용해서 연결되어 있는 정점들의 집합의 수가 몇개인지 구해주면 된다.
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 | #include <string> #include <vector> using namespace std; bool vis[201]; void dfs(int here, vector<vector<int>> &grp) { vis[here] = true; for (int i = 0; i < grp[here].size(); i++) { if (grp[here][i] == 0 || vis[i]) continue; dfs(i, grp); } } int solution(int n, vector<vector<int>> coms) { int ans = 0; for (int i = 0; i < coms.size(); i++) { if (!vis[i]) { ans++; dfs(i, coms); } } return ans; return 1; } | cs |
'알고리즘 문제 풀이 > 프로그래머스' 카테고리의 다른 글
프로그래머스: 베스트앨범 (C++) (0) | 2019.10.30 |
---|---|
프로그래머스: 단어 변환 (C++) (0) | 2019.09.29 |
프로그래머스: 카펫 (C++) (0) | 2019.09.28 |
프로그래머스: 숫자 야구 (C++) (0) | 2019.09.27 |
프로그래머스: 소수찾기 (C++) (0) | 2019.09.27 |