이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#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].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].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].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;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |