문제링크 : https://programmers.co.kr/learn/courses/30/lessons/43162
문제설명
문제를 보면 알겠지만 그래프의 컴포넌트 갯수를 구하는 것이다 ..
알고리즘
DFS로 간단히 풀수있다..
코드
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
|
#include<iostream>
#include<vector>
using namespace std;
int visited[100];
//기본적인 dfs 구조
void dfs(int cur, int n, vector<vector<int>> computers) {
visited[cur] = true;
for (int i = 0; i < n; i++) {
if (!visited[i] && computers[cur][i] == !]) dfs(i, n, computers);
}
}
//dfs를 이용하여 컴포넌트의 갯수를 구함
int dfsAll(int n, vector<vector<int>>computers) {
int components = 0;
for (int i = 0; i < n; i++) {
if (!visited[i]) {
dfs(i, n, computers);
components++;
}
}
return components;
}
int solution(int n, vector<vector<int>> computers) {
int answer = dfsAll(n, computers);
return answer;
}
|
cs |
'c++ > 프로그래머스' 카테고리의 다른 글
프로그래머스 : 타일 장식물 (0) | 2020.04.02 |
---|---|
프로그래머스: 단어변환 (0) | 2020.04.02 |
프로그래머스 : 타겟넘버 (0) | 2020.04.01 |
프로그래머스 : k번째수 (0) | 2020.03.27 |
프로그래머스 : 전화 번호 목록 (0) | 2020.03.27 |