| # | Time | Username | Problem | Language | Result | Execution time | Memory | 
|---|---|---|---|---|---|---|---|
| 898921 | vjudge1 | Magic Tree (CEOI19_magictree) | C++17 | 0 ms | 0 KiB | 
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
#define ll long long int
#define pb push_back
#define mp make_pair
#define pii pair<int, int>
#define all(x) x.begin(), x.end()
#define u_map unordered_map
#define int ll
const int maxn = 1e5 + 5, mod = 1e9 + 7;
vector<int> adj[maxn];
int d[maxn], w[maxn], ans, dp[maxn];
map<int, int> cnt;
bool issub = true;
signed main() {
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);
    cout.tie(nullptr);
    int n, m, k;
    cin >> n >> m >> k;
    for (int i = 2; i <= n; i++) {
    	int p;
    	cin >> p;
    	if (p != i - 1) {
    		issub = false;
    	}
    	adj[p].pb(i);
    }
    for (int i = 1; i <= m; i++) {
    	int _v, _d, _w;
    	cin >> _v >> _d >> _w;
    	d[_v] = _d;
    	w[_v] = _w;
    	ans += _w;
    }
    if (issub) {
    	for (int i = n; i >= 1; i--) {
    		if (i == n) {
    			cnt[d[i]]++;
    			dp[i] = 1;
    			continue;
    		}
    		cnt[d[i]]++
    		dp[i] = max(dp[i + 1], cnt[d[i]] * d[i]);
    	}
    	cout << dp[1];
    	return 0;
    }
    cout << ans;
    return 0;	
}
