Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- java
- 에라토스테네스의 체
- Effective Java
- 완전탐색
- 시뮬레이션
- 백트래킹
- 투 포인터
- 알고리즘
- 위상정렬
- 구현
- JUnit 5
- 그리디
- 수학
- swea
- CS
- 프로그래머스
- 이분탐색
- 스택
- 백준
- dfs
- Kotlin
- mst
- Network
- 유니온 파인드
- 후니의 쉽게 쓴 시스코 네트워킹
- 세그먼트 트리
- 문자열
- BFS
- 동적계획법
- 플로이드-와샬
Archives
반갑습니다!
[프로그래머스] 네트워크 본문
풀이
네트워크가 몇 개의 그룹으로 구성되어있는지 확인하는 문제이다. 방문 여부를 체크하는 배열을 만들고 DFS탐색을 하면 같은 네트워크에 속한 컴퓨터들은 재귀적으로 DFS 탐색을 하기 때문에 solution 함수에서 DFS를 총 몇 번 수행하는지를 세어주면 된다.
코드
#include <string>
#include <vector>
using namespace std;
void dfs(int n, vector<vector<int>>& computers, vector<bool>& visited, int idx){
visited[idx] = true;
for(int i=0; i<n; i++){
if(!visited[i] && computers[idx][i])
dfs(n, computers, visited, i);
}
}
int solution(int n, vector<vector<int>> computers) {
int answer = 0;
vector<bool> visited(n, false);
for(int i=0; i<n; i++)
if(!visited[i]){
answer++;
dfs(n, computers, visited, i);
}
return answer;
}
'알고리즘 문제 풀이' 카테고리의 다른 글
[백준] 14890 경사로 (0) | 2020.05.08 |
---|---|
[프로그래머스] 셔틀버스 (0) | 2020.05.07 |
[프로그래머스] 타겟 넘버 (0) | 2020.05.07 |
[SWEA] 2383 점심 식사시간 (0) | 2020.05.07 |
[백준] 14889 스타트와 링크 (0) | 2020.05.06 |