# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
242329 | dantoh000 | Magic Tree (CEOI19_magictree) | C++14 | 83 ms | 7800 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;
typedef long long ll;
int n,m,k;
int p[100005];
vector<int> G[100005];
int a[100005];
int L[100005];
int V[100005][2];
ll dp[100005][2];
bool isline = 1;
long long LEAFANS = 0;
void dfs(int u){
dp[u][0] = dp[u][1] = 0;
for (auto v: G[u]){
dfs(v);
dp[u][0] += dp[v][0];
dp[u][1] += dp[v][1];
}
dp[u][0] += V[u][0];
dp[u][1] += V[u][1];
dp[u][0] = max(dp[u][0],dp[u][1]);
}
int main(){
scanf("%d%d%d",&n,&m,&k);
for (int i = 2; i <= n; i++){
scanf("%d",&p[i]);
G[p[i]].push_back(i);
if (p[i] != i-1) isline = false;
}
for (int i = 0; i < m; i++){
int v,d,w;
scanf("%d%d%d",&v,&d,&w);
a[v] = d;
LEAFANS += w;
V[v][d-1] += w;
}
if (k <= 2){
dfs(1);
printf("%lld\n",dp[1][0]);
}
else if (isline){
int ans = 0;
for (int i = 0; i <= n; i++) L[i] = 1000000005;
for (int i = n; i >= 1; i--){
if (a[i] == 0) continue;
int pos = upper_bound(L,L+ans,a[i])-L;
//printf("%d goes %d\n",a[i],pos);
L[pos] = a[i];
ans = max(ans,pos+1);
}
printf("%d\n",ans);
}
else printf("%lld\n",LEAFANS);
}
Compilation message (stderr)
# | 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... |
# | 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... |