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
- UE5
- C++
- NRVO
- Unreal Engine5
- Frustum
- RootMotion
- 프로그래머스
- const
- directx
- 1563
- 오블완
- UnrealEngine5
- Programmers
- 언리얼엔진5
- 팰린드롬 만들기
- winapi
- GeeksForGeeks
- DirectX11
- 줄 세우기
- algorithm
- IFileDialog
- baekjoon
- 백준
- RVO
- DeferredRendering
- 티스토리챌린지
- 2294
- UnrealEngine4
- C
- softeer
Archives
- Today
- Total
Game Develop
[Algorithm]Baekjoon 14267번 : 회사 문화 1 본문
https://www.acmicpc.net/problem/14267
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
|
int n, m, a, b;
vector<vector<int>> graph(100001);
int nums[100001] = { 0 };
int answers[100001] = { 0 };
void DFS(int node, int sum)
{
for (int i = 0; i < graph[node].size(); ++i)
{
int nextNode = graph[node][i];
answers[nextNode] = sum + nums[nextNode];
DFS(nextNode, sum + nums[nextNode]);
}
}
int main()
{
ios::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin >> n >> m;
for (int i = 1; i <= n; ++i)
{
cin >> a;
if (i == 1) continue;
graph[a].push_back(i);
}
for (int i = 0; i < m; ++i)
{
cin >> a >> b;
nums[a] += b;
}
DFS(1, 0);
for (int i = 1; i <= n; ++i)
{
cout << answers[i] << ' ';
}
}
|
cs |
어렵지 않은 문제이다. 유의해야할 것은, 칭찬은 여러번 받을 수 있다는 것이다.
이런 설명이 안되어있는게 아쉽고, 테스트케이스에라도 표현해놨으면 좋을 것 같다.
'Algorithm > Baekjoon' 카테고리의 다른 글
[Algorithm]Baekjoon 17090번 : 미로 탈출하기 (0) | 2023.11.17 |
---|---|
[Algorithm]Baekjoon 2186번 : 문자판 (0) | 2023.11.17 |
[Algorithm]Baekjoon 5557번 : 1학년 (0) | 2023.11.16 |
[Algorithm]Baekjoon 1516번 : 게임 개발 (1) | 2023.11.16 |
[Algorithm]Baekjoon 7579 :: 앱 (0) | 2023.11.15 |