-
Notifications
You must be signed in to change notification settings - Fork 0
/
baekjoon16437.cpp
56 lines (47 loc) · 1008 Bytes
/
baekjoon16437.cpp
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
#include <iostream>
#include <vector>
#include <algorithm>
#define MAX 123457
using namespace std;
typedef long long ll;
int N, a, p, wolf[MAX], island[MAX], dp[MAX];
ll answer;
vector<int> v[MAX], sheep;
char animal;
long long DFS(int startX) {
int vSize = v[startX].size();
if (vSize == 0) {
if (wolf[startX])
return 0; // 리프노드가 늑대이면 무시
else
return island[startX]; // 양이면 갖고 올라간다
}
long long tempResult = 0;
for (int i = 0; i < vSize; i++) {
int nx = v[startX][i];
tempResult += DFS(nx);
}
// 밑의 노드들 계산한 값 + 현재 노드의 상태를 추가
if (wolf[startX]) {
tempResult -= island[startX];
}
else
tempResult += island[startX];
if (tempResult < 0) // 만약 이 노드의 값이 0이면 무시
return 0;
else
return tempResult;
}
int main() {
ios::sync_with_stdio(false);
cin.tie(0);
cin >> N;
for (int i = 2; i <= N; i++) {
cin >> animal >> a >> p;
if (animal == 'W')
wolf[i] = true;
island[i] = a;
v[p].push_back(i);
}
cout << DFS(1);
}