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
- RootMotion
- C++
- directx
- 프로그래머스
- C
- algorithm
- UE5
- RVO
- softeer
- 2294
- Frustum
- DirectX11
- 팰린드롬 만들기
- UnrealEngine4
- GeeksForGeeks
- 백준
- winapi
- UnrealEngine5
- NRVO
- Unreal Engine5
- 1563
- const
- Programmers
- 티스토리챌린지
- IFileDialog
- 오블완
- 언리얼엔진5
- 줄 세우기
- DeferredRendering
- baekjoon
Archives
- Today
- Total
Game Develop
[Algorithm]Baekjoon 2458번 : 제출 본문
https://www.acmicpc.net/problem/2458
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
int n, m, a, b, answer;
vector<vector<int>> graphs[2];
int counts[2] = { 0 };
bool visited[501] = { false };
void DFS(int node, int flag)
{
for (int i = 0; i < graphs[flag][node].size(); ++i)
{
int nextNode = graphs[flag][node][i];
if (visited[nextNode]) continue;
++counts[flag];
visited[nextNode] = true;
DFS(nextNode, flag);
}
}
int main(void)
{
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
graphs[0].resize(501);
graphs[1].resize(501);
cin >> n >> m;
for (int i = 0; i < m; ++i)
{
cin >> a >> b;
graphs[0][a].push_back(b);
graphs[1][b].push_back(a);
}
for (int i = 1; i <= n; ++i)
{
memset(visited, false, sizeof(visited));
DFS(i, 0);
memset(visited, false, sizeof(visited));
DFS(i, 1);
if (counts[0] + counts[1] == n - 1) ++answer;
counts[0] = counts[1] = 0;
}
cout << answer;
}
|
cs |
프로그래머스에 있는 '순위' 라는 문제랑 완벽히 같은 문제이다.
플로이드와샬로 푸는 경우가 좀 더 대중적?인거같긴한데 나는 그때도 이렇게 풀기도했고 지금도 이 풀이가 먼저 떠오르긴 했다. 플로이드는 n^3이라서 사실 위의 dfs풀이가 더 빠르긴하다.
사실 코드를 더 최적화하려다가 시간만 날리고 다시 원래풀이로 풀었다.. 순위풀었을 때보다는 더 깔끔하다.
'Algorithm > Baekjoon' 카테고리의 다른 글
[Algorithm]Baekjoon 9370번 : 미확인 도착지 (0) | 2023.10.12 |
---|---|
[Algorithm]Baekjoon 1956번 : 운동 (0) | 2023.10.12 |
[Algorithm]Baekjoon 18352번 :: 특정 거리의 도시 찾기 (0) | 2023.10.12 |
[Algorithm]Baekjoon 4485번 :: 녹색 옷 입은 애가 젤다지? (0) | 2023.10.12 |
[Algorithm]Baekjoon 1261번 :: 알고스팟 (1) | 2023.10.12 |