백준
백준 16404 주식회사 승범이네
콩순이냉장고
2023. 1. 18. 18:28
문제 URL : https://www.acmicpc.net/problem/16404
문제 접근법 :
오일러 경로 테크 + lazy propagation segtree 문제입니다.
dfs를 이용해서 해당노드들의 인덱스를 다시설정해주고 해당노드의 자손들이 몇개나있는지 나올때 확인할수 있으므로
오일러를 이용해서 범위를 셋팅해줄수있습니다.
그후 segtree를 이용해서 update와 query를 이용해서 답을 구하시면 됩니다.
소스코드 :
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
//By 콩순이냉장고
#include <bits/stdc++.h>
using namespace std;
vector<int> tree,adj[100001],lidx,ridx,lazy;
vector<tuple<int,int,int>> iv;
int n,m;
int p =0;
void input(){
cin>>n>>m;
int a=0,b=0,c=0;
for(int i=1;i<=n;i++){
cin>>a;
if(a==-1)continue;
adj[a].push_back(i);
}
for(int i=0;i<m;i++){
cin>>a>>b;
if(a==1)cin>>c;
iv.push_back({a,b,c});
}
}
void dfs(int cur=1){
lidx[cur]=++p;
for(int next : adj[cur])dfs(next);
ridx[cur]=p;
}
void lazy_update(int node,int s,int e){
if(lazy[node]!=0){
if(s!=e){
lazy[node*2]+=lazy[node];
lazy[node*2+1]+=lazy[node];
}
tree[node]+=lazy[node];
lazy[node]=0;
}
}
void update_range(int l,int r ,int val,int node =1,int s=1,int e=n){
lazy_update(node,s,e);
if(l>e||r<s)return;
if(l<=s&&e<=r){
if(s!=e){
lazy[node*2]+=val;
lazy[node*2+1]+=val;
}
tree[node]+=val;
return;
}
int mid=(s+e)>>1;
update_range(l,r,val,node*2,s,mid);
update_range(l,r,val,node*2+1,mid+1,e);
tree[node] = tree[node*2]+tree[node*2+1];
}
int query(int idx,int node=1,int s=1,int e=n){
lazy_update(node,s,e);
if(s==e)return tree[node];
int mid = (s+e)>>1;
if(idx<=mid)return query(idx,node*2,s,mid);
return query(idx,node*2+1,mid+1,e);
}
void solve(){
lidx = ridx = vector<int>(n+1);
int h = ceil(log2(n));
int treesize = 1<<(h+1);
tree = lazy = vector<int>(treesize);
dfs();
for(auto[a,b,c]:iv){
if(a==1){
update_range(lidx[b],ridx[b],c);
}
else{
cout<<query(lidx[b])<<"\n";
}
}
}
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
//freopen("input.txt", "r", stdin);
input();
solve();
}
|
cs |
궁금한점 혹은 모르는점 어떤질문이든 댓글은 언제나 환영입니다.