반응형
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 |
Tags
- Django column 값 가져오기
- html
- Dependency
- Dependency Injection
- table tag
- DI
- Django
- table cell size
- html cell
- html cell size
- Django 특정 값 가져오기
- Spring
Archives
- Today
- Total
emluy 개발 일기
C++ - (프로그래머스) BFS/DFS 네트워크 본문
SMALL
1. idea
- 각 노드를 시작점으로 하는 모든 경로 경우의 수를 따져봐야하는 문제이다.
- 방문했던 노드는 0 으로 만들어주어 체크해준다.
- 다른 그룹에 속하는지 확인하기 위해 solution함수에 for문으로 각 노드를 처음 시작점으로 dfs탐색 시작할 수 있게 해주고
- dfs함수를 만들어주어 재귀를 통해 각 노드를 연결시키며 각 그룹안에 경로를 완성시킨다.
#include <string>
#include <vector>
using namespace std;
vector<vector<int>> computers_network;
bool dfs(int n) {
if (!computers_network[n][n]) return false;
computers_network[n][n] = 0;
for (int i = 0; i < computers_network.size(); i++) {
if (computers_network[n][i]) dfs(i);
}
return true;
}
int solution(int n, vector<vector<int>> computers) {
int answer = 0;
computers_network = computers;
for (int i = 0; i < n; i++) {
if (computers[i][i] && dfs(i))answer++;
}
return answer;
}
반응형
'알고리즘 > c, c++' 카테고리의 다른 글
Mac - VsCode 에 C/C++ 개발환경 세팅하기 (1) | 2020.12.31 |
---|---|
C++ - (프로그래머스) BFS/DFS 여행경로 (0) | 2020.10.17 |
C++ - vector<string> 복사 & cout 으로 출력 (0) | 2020.10.16 |
C++ - (프로그래머스) 단어변환 (0) | 2020.10.16 |
DFS, BFS 정리 (0) | 2020.10.16 |
Comments