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
- 문자열
- 백트래킹
- 정렬
- 재귀
- DFS
- 구현
- 트리
- BFS
- 유니온 파인드
- ue5
- 다익스트라
- XR Interaction Toolkit
- 다이나믹 프로그래밍
- 누적 합
- 유니티
- 시뮬레이션
- 백준
- 그리디 알고리즘
- 투 포인터
- 브루트포스
- Unreal Engine 5
- 스택
- 그래프
- 자료구조
- Team Fortress 2
- 우선순위 큐
- VR
- 수학
- c++
- 알고리즘
Archives
- Today
- Total
1일1알
백준 2458번 키 순서 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>
#define OUT
using namespace std;
using int64 = long long;
int n, m;
vector<vector<int>> graph1;
vector<vector<int>> graph2;
vector<bool> visited;
void Dfs(int n, set<int>& s, vector<vector<int>>& graph) {
visited[n] = true;
s.insert(n);
for (auto next : graph[n]) {
if (visited[next]) continue;
Dfs(next, s, graph);
}
}
void RefreshVisited() {
for (int i = 1; i <= n; i++) {
visited[i] = false;
}
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin >> n >> m;
graph1 = vector<vector<int>>(n + 1, vector<int>());
graph2 = vector<vector<int>>(n + 1, vector<int>());
visited = vector<bool>(n + 1, false);
for (int i = 0; i < m; i++) {
int a, b;
cin >> a >> b;
graph1[a].push_back(b);
graph2[b].push_back(a);
}
int ans = 0;
for (int i = 1; i <= n; i++) {
set<int> s;
RefreshVisited();
Dfs(i, s, graph1);
RefreshVisited();
Dfs(i, s, graph2);
if (s.size() == n) ans++;
}
cout << ans;
}
'알고리즘' 카테고리의 다른 글
백준 4179번 불! C++ (0) | 2022.08.21 |
---|---|
백준 17471번 게리맨더링 C++ (0) | 2022.08.20 |
백준 5427번 불 C++ (0) | 2022.08.18 |
백준 1062번 가르침 C++ (0) | 2022.08.17 |
백준 4485번 녹색 옷 입은 애가 젤다지? C++ (0) | 2022.08.16 |