#include <bits/stdc++.h>
using namespace std;
typedef long long int64;
const int64 mod = 1e9 + 7;
const int maxn = 1e5 + 2;
int64 dp[maxn];
int p[maxn];
map <pair <int, int>, int64> c;
vector <int> ad [maxn];
multiset <int64> ms[maxn];
int n;
void upd (int u) {
ms[u].insert(0);
vector <int64> d;
dp[u] = 0;
for (int v: ad[u]) {
ms[u].insert((ms[v].empty() ? 0 : *--ms[v].end()) + c[{u, v}]);
}
if (ms[u].size() >= 1) dp[u] += *--ms[u].end();
if (ms[u].size() >= 2) dp[u] += *----ms[u].end();
}
void dfs (int u) {
for (int v: ad[u]) {
dfs(v);
}
upd(u);
}
int main() {
cin >> n;
for (int i = 1; i <= n - 1; i++){
int x;
cin >> x;
ad[x].push_back(i);
p[i] = x;
}
for (int i = 1; i <= n - 1; i++){
int x;
cin >> x;
c[{p[i], i}] = x;
}
int q;
cin >> q;
dfs(0);
int64 rs = 0;
for (int i = 0; i < n; i++){
rs = (rs + dp[i]) % mod;
}
cout << rs << "\n";
while (q--) {
int64 x,y;
cin >> x >> y;
int u = x;
while (u) {
ms[p[u]].erase(ms[p[u]].find((ms[u].empty() ? 0: *--ms[u].end()) + c[{p[u], u}]));;
rs = (rs - dp[p[u]] + mod) % mod;
dp[p[u]] = 0;
u = p[u];
}
c[{p[x], x}]+=y;
u = x;
while (u) {
ms[p[u]].insert((ms[u].empty() ? 0: *--ms[u].end()) + c[{p[u], u}]);
if (ms[p[u]].size() >= 1) dp[p[u]] += *--ms[p[u]].end();
if (ms[p[u]].size() >= 2) dp[p[u]] += *----ms[p[u]].end();
rs = (rs + dp[p[u]] + mod) % mod;
u = p[u];
}
cout << rs << "\n";
}
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
10 ms |
15060 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
166 ms |
52044 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
132 ms |
53684 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
10 ms |
15060 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |