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
- RVO
- 프로그래머스
- DirectX11
- C
- NRVO
- directx
- const
- Frustum
- GeeksForGeeks
- DeferredRendering
- Programmers
- winapi
- 1563
- Unreal Engine5
- IFileDialog
- 팰린드롬 만들기
- UnrealEngine5
- 줄 세우기
- C++
- 백준
- 2294
- 오블완
- 언리얼엔진5
- UnrealEngine4
- UE5
- 티스토리챌린지
- baekjoon
- algorithm
- softeer
- RootMotion
Archives
- Today
- Total
Game Develop
[Algorithm] Baekjoon 1135번 : 뉴스 전하기 본문
https://www.acmicpc.net/problem/1135
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
#include <iostream>
#include <string>
#include <map>
#include <vector>
#include <algorithm>
#include <math.h>
#include <queue>
#include <functional>
#include <sstream>
#include <memory.h>
#include <deque>
#include <set>
#include <unordered_map>
#include <stack>
#include <numeric>
using namespace std;
int n;
vector<vector<int>> graph(51);
int DFS(int node)
{
vector<int> v;
int result = 0;
for (int i = 0; i < graph[node].size(); ++i)
{
int child = graph[node][i];
v.push_back(DFS(child));
}
sort(v.rbegin(), v.rend());
for (int i = 0; i < v.size(); ++i)
{
result = max(result, v[i] + i+1);
}
return result;
}
int main()
{
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
cin >> n;
for (int i = 0; i < n; ++i)
{
int num;
cin >> num;
if (i == 0) continue;
graph[num].push_back(i);
}
cout << DFS(0);
}
|
cs |
자식들에게 전파할 때 1분씩 추가될 때, 전부 퍼뜨리는데에 필요한 최소값을 구하는 문제이다.
자식이 여럿 있을 때, 퍼뜨리는데에 가장 오래걸리는 자식한테 먼저 퍼뜨리는게 무조건적으로 유리하다.
그렇다고 가장오래걸리는 자식이 쭉쭉 퍼지는 동안, 나머지 자식들이 전부 퍼진다는 보장이 없기때문에
40번째 라인처럼 최대값을 전부 비교해줘야 한다.
'Algorithm > Baekjoon' 카테고리의 다른 글
[Algorithm]Baekjoon 1695번 :: 팰린드롬 만들기 (0) | 2024.05.23 |
---|---|
[Algorithm]Baekjoon 2410번 :: 2의 멱수의 합 (0) | 2024.05.23 |
[Algorithm] Baekjoon 1660번 : 캡틴 이다솜 (0) | 2024.05.23 |
[Algorithm] Baekjoon 4781번 : 사탕 가게 (0) | 2024.05.23 |
[Algorithm] Baekjoon 12026번 : BOJ 거리 (0) | 2024.05.23 |