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
- Algorithm
- lifecycle
- 알고리즘
- activity
- CollapsingToolbarLayout
- onMeasure
- AppBarLayout
- 알림
- Behavior
- hilt
- 코틀린
- Android
- notification
- room
- 백준
- CustomView
- recyclerview
- CoordinatorLayout
- Navigation
- BOJ
- View
- HTTP
- LiveData
- Coroutine
- kotlin
- onLayout
- 안드로이드
- DataBinding
- sqlite
- ViewModel
Archives
- Today
- Total
개발일지
Android in A..Z - DFS 본문
개념
그래프를 탐색할 때 해당 분기를 먼저 탐색하는 방법
작동원리
1. 갈 수 있는 정점이 있으면 들어간다.
2. 갈 수 있는 정점이 없으면 가장 가까운 분기로 돌아가서 다른 방향으로 들어간다.
시간복잡도
O(V + E)
문제
11724 연결 요소의 개수
코드
#include <bits/stdc++.h>
using namespace std;
int n, m;
vector<vector<int>> graph;
vector<bool> isVisited;
void dfs(int index) {
for (auto &next : graph[index]) {
if (!isVisited[next]) {
isVisited[next] = true;
dfs(next);
}
}
}
int main() {
ios::sync_with_stdio(false); cin.tie(nullptr); cout.tie(nullptr);
cin >> n >> m;
graph.resize(n + 1);
while (m--) {
int u, v;
cin >> u >> v;
graph[u].emplace_back(v);
graph[v].emplace_back(u);
}
int ans = 0;
isVisited.resize(n + 1, false);
for (int i = 1;i <= n;++i) {
if (!isVisited[i]) {
ans++;
dfs(i);
}
}
cout << ans << "\n";
}
'Algorithm (알고리즘)' 카테고리의 다른 글
Algorithm in A..Z - 유클리드 호제법 (0) | 2020.12.01 |
---|---|
Algorithm in A..Z - 에라토스테네스의 체 (0) | 2020.11.28 |
Algorithm in A..Z - BFS (0) | 2020.11.28 |
Algorithm in A..Z - Binary Matching (Hopcroft-Karp) (0) | 2020.10.16 |
Algorithm - Fermat's little theorem(페르마의 소정리) (0) | 2020.10.08 |
Comments