#include <iostream>
#include <fstream>
#include <iomanip>
#include <cmath>
#include <cassert>
#include <cstring>
#include <vector>
#include <algorithm>
#include <deque>
#include <set>
#include <utility>
#include <array>
#include <complex>
using u32 = unsigned;
using i32 = int;
using i64 = long long;
using u64 = unsigned long long;
using f64 = double;
using f80 = long double;
#define int long long
using namespace std;
using pt = complex<f80>;
#define ALL(x) begin(x), end(x)
#define ShinLena cin.tie(nullptr)->sync_with_stdio(false);
#define N 100005
set<pair<int, i64>> s[N];
int n, m, k;
i64 dp[N];
basic_string<int> g[N];
void dfs(int u)
{
i64 nocur = 0, cur = 0, fruit = s[u].size(), d;
if (fruit) tie(d, cur) = *s[u].begin();
for (auto v : g[u])
{
dfs(v);
nocur += dp[v];
if (s[v].size() > s[u].size()) s[v].swap(s[u]);
else
{
i64 curthis = 0;
for (auto &[x, x2] : s[v])
if (fruit and x <= d) curthis += x2;
cur += curthis;
}
for (auto &[x, x2] : s[v])
{
auto it = s[u].lower_bound(make_pair(x, 0));
if (it != s[u].end() and it->first == x)
{
int nw = it->second + x2;
s[u].erase(it);
s[u].emplace(x, nw);
}
else s[u].emplace(x, x2);
}
set<pair<int, i64>>().swap(s[v]);
}
if (!fruit) return void(dp[u] = nocur);
dp[u] = max(cur, nocur);
}
signed main()
{
ShinLena;
cin >> n >> m >> k;
for (int i = 2, p; i <= n; ++i) cin >> p, g[p].push_back(i);
for (int v, d, w, i = 0; i < m; ++i)
{
cin >> v >> d >> w;
s[v].emplace(d, w);
}
dfs(1);
cout << dp[1];
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3 ms |
9048 KB |
Output is correct |
2 |
Incorrect |
2 ms |
9052 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
55 ms |
12200 KB |
Output is correct |
2 |
Correct |
40 ms |
20560 KB |
Output is correct |
3 |
Correct |
158 ms |
16200 KB |
Output is correct |
4 |
Correct |
72 ms |
15304 KB |
Output is correct |
5 |
Correct |
104 ms |
18188 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
3 ms |
9308 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
78 ms |
15772 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3 ms |
9048 KB |
Output is correct |
2 |
Incorrect |
2 ms |
9052 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
8 ms |
9308 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3 ms |
9048 KB |
Output is correct |
2 |
Incorrect |
2 ms |
9052 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3 ms |
9048 KB |
Output is correct |
2 |
Incorrect |
2 ms |
9052 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |