#include <iostream>
#include <algorithm>
#include <vector>
#include <set>
using namespace std;
const int MAXN=2e5+3;
#define endl '\n'
#define getchar getchar_unlocked
struct Node {
long long mx, lazyadd, lazyset;
};
vector <int> v[MAXN];
set <int> vals[MAXN];
vector <long long> dp[MAXN];
Node tree[4*MAXN];
long long c[MAXN];
int h[MAXN], cnt;
pair <int,int> kopie[MAXN];
int ss[MAXN];
void merge_lazy(int par, int ch) {
if (tree[par].lazyset!=-1) {
tree[ch].lazyset=tree[par].lazyset;
tree[ch].lazyadd=0;
return;
}
if (tree[ch].lazyset==-1) tree[ch].lazyadd+=tree[par].lazyadd;
else tree[ch].lazyset+=tree[par].lazyadd;
}
void push_lazy(int node, int l, int r) {
if (tree[node].lazyadd==0 && tree[node].lazyset==-1) return;
if (tree[node].lazyadd==0) tree[node].mx=tree[node].lazyset;
else tree[node].mx+=tree[node].lazyadd;
if (l!=r) {
merge_lazy(node,node*2);
merge_lazy(node,node*2+1);
}
tree[node].lazyadd=0;
tree[node].lazyset=-1;
}
void add_update(int node, int l, int r, int ql, int qr, long long ch) {
push_lazy(node,l,r);
if (ql>r || qr<l) return;
if (l>=ql && r<=qr) {
tree[node].lazyadd=ch;
push_lazy(node,l,r);
return;
}
int mid=(l+r)/2;
add_update(node*2,l,mid,ql,qr,ch);
add_update(node*2+1,mid+1,r,ql,qr,ch);
tree[node].mx=max(tree[node*2].mx,tree[node*2+1].mx);
}
void set_update(int node, int l, int r, int ql, int qr, long long ch) {
push_lazy(node,l,r);
if (ql>r || qr<l) return;
if (l>=ql && r<=qr) {
tree[node].lazyset=ch;
push_lazy(node,l,r);
return;
}
int mid=(l+r)/2;
set_update(node*2,l,mid,ql,qr,ch);
set_update(node*2+1,mid+1,r,ql,qr,ch);
tree[node].mx=max(tree[node*2].mx,tree[node*2+1].mx);
}
long long query(int node, int l, int r, int qind) {
push_lazy(node,l,r);
if (l==r) return tree[node].mx;
int mid=(l+r)/2;
if (qind<=mid) return query(node*2,l,mid,qind);
return query(node*2+1,mid+1,r,qind);
}
int find_ind(int node, int l, int r, int ql, int qr, long long ch) {
push_lazy(node,l,r);
if (ql>r || qr<l || tree[node].mx<=ch) return -1;
if (l==r) return l;
int mid=(l+r)/2;
int res=find_ind(node*2,l,mid,ql,qr,ch);
if (res!=-1) return res;
return find_ind(node*2+1,mid+1,r,ql,qr,ch);
}
void find_ss(int x) {
ss[x]=1;
for (int i=0;i<v[x].size();++i) {
find_ss(v[x][i]);
ss[x]+=ss[v[x][i]];
}
for (int i=1;i<v[x].size();++i) {
if (ss[v[x][i]]>ss[v[x][0]]) swap(v[x][0],v[x][i]);
}
}
void find_dp(int x) {
if (v[x].empty()) {
add_update(1,1,cnt,h[x]+1,cnt,c[x]);
vals[x].insert(h[x]);
vals[x].insert(cnt);
return;
}
long long cur_res;
int k;
cur_res=0;
for (int i=1;i<v[x].size();++i) {
find_dp(v[x][i]);
dp[v[x][i]].resize(vals[v[x][i]].size());
k=0;
for (auto j:vals[v[x][i]]) {
dp[v[x][i]][k]=query(1,1,cnt,j);
k++;
}
cur_res+=query(1,1,cnt,(*vals[v[x][i]].lower_bound(h[x])));
set_update(1,1,cnt,1,cnt,0);
}
find_dp(v[x][0]);
vals[x]=move(vals[v[x][0]]);
cur_res+=query(1,1,cnt,(*vals[x].lower_bound(h[x])));
for (int i=1;i<v[x].size();++i) {
for (auto j:vals[v[x][i]]) {
set_update(1,1,cnt,j,j, query(1,1,cnt,(*vals[x].lower_bound(j))) );
}
}
for (int i=1;i<v[x].size();++i) {
k=0;
for (auto it=vals[v[x][i]].begin();it!=vals[v[x][i]].end();it++,k++) {
if (k==0) add_update(1,1,cnt,1,(*it),dp[v[x][i]][k]);
else {
add_update(1,1,cnt,(*prev(it))+1,(*it),dp[v[x][i]][k]);
}
vals[x].insert((*it));
}
}
add_update(1,1,cnt,1,cnt,c[x]);
int pos=find_ind(1,1,cnt,1,h[x],cur_res);
if (pos!=-1) {
set_update(1,1,cnt,pos,h[x],cur_res);
}
vals[x].insert(h[x]);
}
int read() {
int res=0;
char c=getchar();
while (c<'0' || c>'9') c=getchar();
while (c>='0' && c<='9') {
res=res*10+c-'0';
c=getchar();
}
return res;
}
int main () {
ios::sync_with_stdio(false);
cin.tie(nullptr);
cout.tie(nullptr);
int n, par;
n=read();
for (int i=1;i<=n;++i) {
par=read();
h[i]=read();
c[i]=read();
if (i!=1) v[par].push_back(i);
kopie[i].first=h[i];
kopie[i].second=i;
}
sort(kopie+1,kopie+n+1);
cnt=0;
for (int i=1;i<=n;++i) {
if (kopie[i].first!=kopie[i-1].second) cnt++;
h[kopie[i].second]=cnt;
}
cnt++;
find_ss(1);
for (int j=1;j<=4*cnt;++j) {
tree[j].lazyset=-1;
}
find_dp(1);
cout << query(1,1,cnt,1) << endl;
return 0;
}
/*
6
1 6 5
1 3 6
1 8 4
3 4 9
2 2 5
2 5 6
*/
Compilation message
worst_reporter2.cpp: In function 'void find_ss(int)':
worst_reporter2.cpp:98:19: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
98 | for (int i=0;i<v[x].size();++i) {
| ~^~~~~~~~~~~~
worst_reporter2.cpp:102:19: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
102 | for (int i=1;i<v[x].size();++i) {
| ~^~~~~~~~~~~~
worst_reporter2.cpp: In function 'void find_dp(int)':
worst_reporter2.cpp:117:19: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
117 | for (int i=1;i<v[x].size();++i) {
| ~^~~~~~~~~~~~
worst_reporter2.cpp:136:19: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
136 | for (int i=1;i<v[x].size();++i) {
| ~^~~~~~~~~~~~
worst_reporter2.cpp:142:19: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
142 | for (int i=1;i<v[x].size();++i) {
| ~^~~~~~~~~~~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
6 ms |
25948 KB |
Output is correct |
2 |
Correct |
7 ms |
26036 KB |
Output is correct |
3 |
Correct |
6 ms |
25948 KB |
Output is correct |
4 |
Correct |
6 ms |
25944 KB |
Output is correct |
5 |
Correct |
26 ms |
27220 KB |
Output is correct |
6 |
Correct |
27 ms |
27612 KB |
Output is correct |
7 |
Correct |
26 ms |
27364 KB |
Output is correct |
8 |
Correct |
27 ms |
27224 KB |
Output is correct |
9 |
Correct |
27 ms |
27276 KB |
Output is correct |
10 |
Correct |
26 ms |
27216 KB |
Output is correct |
11 |
Correct |
26 ms |
27196 KB |
Output is correct |
12 |
Correct |
12 ms |
27228 KB |
Output is correct |
13 |
Correct |
15 ms |
27320 KB |
Output is correct |
14 |
Correct |
14 ms |
26972 KB |
Output is correct |
15 |
Correct |
14 ms |
26972 KB |
Output is correct |
16 |
Correct |
36 ms |
27900 KB |
Output is correct |
17 |
Correct |
36 ms |
27732 KB |
Output is correct |
18 |
Correct |
27 ms |
27984 KB |
Output is correct |
19 |
Correct |
14 ms |
26972 KB |
Output is correct |
20 |
Correct |
15 ms |
27172 KB |
Output is correct |
21 |
Correct |
14 ms |
26968 KB |
Output is correct |
22 |
Correct |
15 ms |
26972 KB |
Output is correct |
23 |
Correct |
15 ms |
26968 KB |
Output is correct |
24 |
Correct |
13 ms |
27112 KB |
Output is correct |
25 |
Correct |
13 ms |
27060 KB |
Output is correct |
26 |
Correct |
10 ms |
27228 KB |
Output is correct |
27 |
Correct |
15 ms |
26972 KB |
Output is correct |
28 |
Correct |
14 ms |
27116 KB |
Output is correct |
29 |
Correct |
13 ms |
27228 KB |
Output is correct |
30 |
Correct |
12 ms |
26972 KB |
Output is correct |
31 |
Correct |
11 ms |
26972 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
6 ms |
25948 KB |
Output is correct |
2 |
Correct |
7 ms |
26036 KB |
Output is correct |
3 |
Correct |
6 ms |
25948 KB |
Output is correct |
4 |
Correct |
6 ms |
25944 KB |
Output is correct |
5 |
Correct |
26 ms |
27220 KB |
Output is correct |
6 |
Correct |
27 ms |
27612 KB |
Output is correct |
7 |
Correct |
26 ms |
27364 KB |
Output is correct |
8 |
Correct |
27 ms |
27224 KB |
Output is correct |
9 |
Correct |
27 ms |
27276 KB |
Output is correct |
10 |
Correct |
26 ms |
27216 KB |
Output is correct |
11 |
Correct |
26 ms |
27196 KB |
Output is correct |
12 |
Correct |
12 ms |
27228 KB |
Output is correct |
13 |
Correct |
15 ms |
27320 KB |
Output is correct |
14 |
Correct |
14 ms |
26972 KB |
Output is correct |
15 |
Correct |
14 ms |
26972 KB |
Output is correct |
16 |
Correct |
36 ms |
27900 KB |
Output is correct |
17 |
Correct |
36 ms |
27732 KB |
Output is correct |
18 |
Correct |
27 ms |
27984 KB |
Output is correct |
19 |
Correct |
14 ms |
26972 KB |
Output is correct |
20 |
Correct |
15 ms |
27172 KB |
Output is correct |
21 |
Correct |
14 ms |
26968 KB |
Output is correct |
22 |
Correct |
15 ms |
26972 KB |
Output is correct |
23 |
Correct |
15 ms |
26968 KB |
Output is correct |
24 |
Correct |
13 ms |
27112 KB |
Output is correct |
25 |
Correct |
13 ms |
27060 KB |
Output is correct |
26 |
Correct |
10 ms |
27228 KB |
Output is correct |
27 |
Correct |
15 ms |
26972 KB |
Output is correct |
28 |
Correct |
14 ms |
27116 KB |
Output is correct |
29 |
Correct |
13 ms |
27228 KB |
Output is correct |
30 |
Correct |
12 ms |
26972 KB |
Output is correct |
31 |
Correct |
11 ms |
26972 KB |
Output is correct |
32 |
Correct |
30 ms |
27208 KB |
Output is correct |
33 |
Correct |
1677 ms |
110392 KB |
Output is correct |
34 |
Correct |
1690 ms |
109556 KB |
Output is correct |
35 |
Correct |
1707 ms |
107032 KB |
Output is correct |
36 |
Correct |
1668 ms |
110300 KB |
Output is correct |
37 |
Correct |
1698 ms |
109296 KB |
Output is correct |
38 |
Correct |
1609 ms |
107776 KB |
Output is correct |
39 |
Correct |
504 ms |
89468 KB |
Output is correct |
40 |
Correct |
422 ms |
89476 KB |
Output is correct |
41 |
Correct |
342 ms |
89580 KB |
Output is correct |
42 |
Correct |
524 ms |
79444 KB |
Output is correct |
43 |
Correct |
518 ms |
79524 KB |
Output is correct |
44 |
Execution timed out |
2054 ms |
130560 KB |
Time limit exceeded |
45 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
6 ms |
25948 KB |
Output is correct |
2 |
Correct |
7 ms |
26036 KB |
Output is correct |
3 |
Correct |
6 ms |
25948 KB |
Output is correct |
4 |
Correct |
6 ms |
25944 KB |
Output is correct |
5 |
Correct |
26 ms |
27220 KB |
Output is correct |
6 |
Correct |
27 ms |
27612 KB |
Output is correct |
7 |
Correct |
26 ms |
27364 KB |
Output is correct |
8 |
Correct |
27 ms |
27224 KB |
Output is correct |
9 |
Correct |
27 ms |
27276 KB |
Output is correct |
10 |
Correct |
26 ms |
27216 KB |
Output is correct |
11 |
Correct |
26 ms |
27196 KB |
Output is correct |
12 |
Correct |
12 ms |
27228 KB |
Output is correct |
13 |
Correct |
15 ms |
27320 KB |
Output is correct |
14 |
Correct |
14 ms |
26972 KB |
Output is correct |
15 |
Correct |
14 ms |
26972 KB |
Output is correct |
16 |
Correct |
36 ms |
27900 KB |
Output is correct |
17 |
Correct |
36 ms |
27732 KB |
Output is correct |
18 |
Correct |
27 ms |
27984 KB |
Output is correct |
19 |
Correct |
14 ms |
26972 KB |
Output is correct |
20 |
Correct |
15 ms |
27172 KB |
Output is correct |
21 |
Correct |
14 ms |
26968 KB |
Output is correct |
22 |
Correct |
15 ms |
26972 KB |
Output is correct |
23 |
Correct |
15 ms |
26968 KB |
Output is correct |
24 |
Correct |
13 ms |
27112 KB |
Output is correct |
25 |
Correct |
13 ms |
27060 KB |
Output is correct |
26 |
Correct |
10 ms |
27228 KB |
Output is correct |
27 |
Correct |
15 ms |
26972 KB |
Output is correct |
28 |
Correct |
14 ms |
27116 KB |
Output is correct |
29 |
Correct |
13 ms |
27228 KB |
Output is correct |
30 |
Correct |
12 ms |
26972 KB |
Output is correct |
31 |
Correct |
11 ms |
26972 KB |
Output is correct |
32 |
Correct |
30 ms |
27208 KB |
Output is correct |
33 |
Correct |
1677 ms |
110392 KB |
Output is correct |
34 |
Correct |
1690 ms |
109556 KB |
Output is correct |
35 |
Correct |
1707 ms |
107032 KB |
Output is correct |
36 |
Correct |
1668 ms |
110300 KB |
Output is correct |
37 |
Correct |
1698 ms |
109296 KB |
Output is correct |
38 |
Correct |
1609 ms |
107776 KB |
Output is correct |
39 |
Correct |
504 ms |
89468 KB |
Output is correct |
40 |
Correct |
422 ms |
89476 KB |
Output is correct |
41 |
Correct |
342 ms |
89580 KB |
Output is correct |
42 |
Correct |
524 ms |
79444 KB |
Output is correct |
43 |
Correct |
518 ms |
79524 KB |
Output is correct |
44 |
Execution timed out |
2054 ms |
130560 KB |
Time limit exceeded |
45 |
Halted |
0 ms |
0 KB |
- |