티스토리 뷰
728x90
문제 링크
https://www.acmicpc.net/problem/14267
1) 각 정점이 내리 갈굼 받는 정도를 저장한다.
2) 1부터 pre-order로 순회하며 부하에게 갈굼을 물려준다.
정답 코드
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <vector> | |
using namespace std; | |
int n, m, lazy[100001]; | |
vector<vector<int>> p; | |
void dfs(int now) { | |
for (int next : p[now]) { | |
lazy[next] += lazy[now]; | |
dfs(next); | |
} | |
} | |
int main() { | |
ios_base::sync_with_stdio(false); | |
cin.tie(0); | |
cin >> n >> m; | |
p.resize(n + 1); | |
int x; cin >> x; | |
for (int i = 2; i < n + 1; i++) { | |
cin >> x; | |
p[x].push_back(i); | |
} | |
int y; | |
for (int i = 0; i < m; i++) { | |
cin >> x >> y; | |
lazy[x] += y; | |
} | |
dfs(1); | |
for (int i = 1; i < n + 1; i++) { | |
cout << lazy[i] << ' '; | |
} | |
} |
728x90
'알고리즘 > 문제 풀이' 카테고리의 다른 글
[BOJ] 백준 2820 자동차 공장 (0) | 2018.07.26 |
---|---|
[BOJ] 백준 14268 내리 갈굼 2 (0) | 2018.07.26 |
[BOJ] 백준 15892 사탕 줍는 로봇 (0) | 2018.07.26 |
[BOJ] 백준 15923 욱제는 건축왕이야!! (0) | 2018.07.26 |
[BOJ] 백준 15927 회문은 회문아니야!! (0) | 2018.07.25 |