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
- 단어 수학
- 회의실 배정
- 자료구조 목차
- 탄막
- 3273
- 윈도우
- 수 만들기
- 걷는건귀찮아
- SWEA
- 알고리즘
- 토글 그룹
- 우분투
- 탄막 이동
- 유니티
- 18249
- 원형
- 3344
- 강의실2
- 2020 KAKAO BLIND RECRUITMENT
- mysqld.sock
- 마우스 따라다니기
- 탄막 스킬 범위
- MySQL
- AI Hub
- 백준
- 문자열 압축
- 그리디알고리즘
- 알고리즘 목차
- 영상 프레임 추출
- c#
Archives
- Today
- Total
와이유스토리
[DFS 단순 반복] 프로그래머스 네트워크 C++ 본문
https://programmers.co.kr/learn/courses/30/lessons/43162
#include <string>
#include <vector>
using namespace std;
bool check[201];
void dfs(int n, vector<vector<int>> computers, int idx){
for(int i=0; i<n; i++) { // i=idx 아님(작을 수도O)
if(check[i]) continue;
if(computers[idx][i] == 1) {
check[i] = true;
dfs(n, computers, i);
}
}
}
int solution(int n, vector<vector<int>> computers) {
int answer = 0;
for(int i=0; i<n; i++) {
if (check[i] != true) {
check[i] = true;
dfs(n, computers, i);
answer++;
}
}
return answer;
}
#include <string>
#include <vector>
using namespace std;
bool check[201];
void dfs(int n, vector<vector<int>> computers, int idx){
check[idx] = true;
for(int i=0; i<n; i++) // i=idx 아님(작을 수도O)
{
if((computers[idx][i] == 1) && (check[i]!=true)) // 한 번 더 체크 필요
{
dfs(n, computers, i);
}
}
}
int solution(int n, vector<vector<int>> computers) {
int answer = 0;
for(int i=0; i<n; i++) {
if (check[i] != true) {
dfs(n, computers, i);
answer++;
}
}
return answer;
}
※ Union-Find 풀이
https://whyou-story.tistory.com/66?category=912481
'코딩테스트 > 그래프|트리' 카테고리의 다른 글
[DFS 순열] 프로그래머스 여행 경로 C++ (0) | 2022.01.20 |
---|---|
[DFS 순열] 프로그래머스 단어 변환 C++ (0) | 2022.01.20 |
[DFS 단순] 프로그래머스 타겟 넘버 C++ (0) | 2022.01.20 |
[DFS, BFS] 백준 12100 2048(Easy) C++ (0) | 2022.01.06 |
[DFS 조합 반복] 프로그래머스 메뉴 리뉴얼 C++ (0) | 2022.01.01 |
Comments