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
- 자료구조
- 투 포인터
- 스택
- 트리
- 브루트포스
- VR
- DFS
- 알고리즘
- 다익스트라
- Unreal Engine 5
- 재귀
- ue5
- Team Fortress 2
- 다이나믹 프로그래밍
- 구현
- 그리디 알고리즘
- BFS
- c++
- 시뮬레이션
- XR Interaction Toolkit
- 수학
- 유니온 파인드
- 유니티
- 누적 합
- 백준
- 문자열
- 우선순위 큐
- 정렬
- 그래프
- 백트래킹
Archives
- Today
- Total
1일1알
백준 9466번 텀 프로젝트 C++ 본문
이미 방문한 노드도 다음에 또 방문해야하는 경우가 있다. 그 경우를 잘 처리해줘야한다.
#include <iostream>
#include <string>
#include <vector>
#include <math.h>
#include <algorithm>
#include <utility>
#include <stack>
#include <queue>
#include <math.h>
#include <set>
#include <map>
#include <list>
#include <unordered_map>
#include <unordered_set>
#include <iomanip>
#include <limits.h>
#include <bitset>
using namespace std;
using int64 = long long;
int n;
int g_cnt = 0;
vector<int> graph;
vector<bool> visited;
unordered_set<int> us;
void Dfs2(int start, int curr) {
g_cnt++;
int next = graph[curr];
if (next == start) return;
Dfs2(start, next);
}
void Dfs(int start, int curr) {
if (visited[curr]) {
for (auto a : us) {
visited[a] = true;
}
return;
}
auto it = us.find(curr);
if (it == us.end()) {
us.insert(curr);
}
else {
for (auto a : us) {
visited[a] = true;
}
Dfs2(curr, curr);
return;
}
int next = graph[curr];
Dfs(start, next);
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
int t;
cin >> t;
while (t--) {
cin >> n;
g_cnt = 0;
graph = vector<int>(n + 1);
visited = vector<bool>(n + 1, false);
for (int i = 1; i <= n; i++) {
cin >> graph[i];
}
for (int i = 1; i <= n; i++) {
if (visited[i]) continue;
us.clear();
Dfs(i, i);
}
cout << n - g_cnt << "\n";
}
}
'알고리즘' 카테고리의 다른 글
백준 2146번 다리 만들기 C++ (0) | 2022.09.05 |
---|---|
백준 1937번 욕심쟁이 판다 C++ (0) | 2022.09.04 |
백준 1520번 내리막 길 C++ (0) | 2022.09.02 |
백준 16197번 두 동전 C++ (0) | 2022.09.01 |
백준 16562번 친구비 C++ (0) | 2022.08.31 |