MYF

LightOJ 1348 Aladdin and the Return Journey

题目链接

LightOJ 1348

题目来源:树链剖分 点权型 单点更新 区间查询

题目分析

题目大意

n个顶点,n-1条边,每个顶点有一个权值,对于一个点的权值进行修改,给定区间求区间权值之和

解析

模版题

代码

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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
#include <set>
#include <map>
#include <stack>
#include <cmath>
#include <queue>
#include <cstdio>
#include <string>
#include <vector>
#include <iomanip>
#include <bitset>
#include <cstring>
#include <iostream>
#include <iosfwd>
#include <deque>
#include <algorithm>
#define Memset(a,val) memset(a,val,sizeof(a))
#define PI acos(-1.0)
#define PB push_back
#define MP make_pair
#define rt(n) (i == n ? '\n' : ' ')
#define hi printf("Hi----------\n")
#define IN freopen("input.txt","r",stdin);
#define OUT freopen("output.txt","w",stdout);
#define debug(x) cout<<"Debug : ---"<<x<<"---"<<endl;
#define debug2(x,y) cout<<"Debug : ---"<<x<<" , "<<y<<"---"<<endl;
#pragma comment(linker, "/STACK:1024000000,1024000000")
using namespace std;
typedef pair<int,int> PII;
typedef long long ll;
const int maxn=100000+5;
const int mod=1000000007;
const int INF=0x3f3f3f3f;
const double eps=1e-8;
#define lson l,m,rt<<1
#define rson m+1,r,rt<<1|1
const int Vmax = 5*1e4 + 5;//点的数量
const int Emax =2*1e5+5;//边的数量 小于Vmax的两倍
namespace segment_tree{
int sum[Vmax<<2],add[Vmax<<2];
inline void pushup(int rt){
sum[rt]=sum[rt<<1]+sum[rt<<1|1];
}
void update(int L,int c,int l,int r,int rt=1){
if (L == l && l == r)
{
sum[rt] = c;
return ;
}
int m = (l + r) >> 1;
if (L <= m) update(L , c , lson);
else update(L , c , rson);
pushup(rt);
}
int query(int L,int R,int l,int r,int rt=1){
if (L <= l && r <= R)
return sum[rt];
int m = (l + r) >> 1;
int ret = 0;
if (L <= m) ret+=query(L , R , lson);
if (m < R) ret+=query(L , R , rson);
return ret;
}
}
namespace poufen{
using namespace segment_tree;
int siz[Vmax],son[Vmax],fa[Vmax],dep[Vmax],top[Vmax],w[Vmax];
int nodenum;

struct edge{
int v,next;
}e[Emax];
int pre[Vmax],ecnt;
inline void init(){
memset(pre, -1, sizeof(pre));
ecnt=0;
}
inline void add_(int u,int v){
e[ecnt].v=v;
e[ecnt].next=pre[u];
pre[u]=ecnt++;
}
void dfs(int u){
siz[u]=1;son[u]=0;//下标从1开始,son[0]初始为0
for(int i=pre[u];~i;i=e[i].next)
{
int v=e[i].v;
if(fa[u]!=v)
{
fa[v]=u;
dep[v]=dep[u]+1;//初始根节点dep!!
dfs(v);
siz[u]+=siz[v];
if(siz[v]>siz[son[u]])son[u]=v;
}
}
}
void build_tree(int u,int tp){
top[u]=tp,w[u]=++nodenum;
if(son[u])build_tree(son[u],tp);
for(int i=pre[u];~i;i=e[i].next)
if(e[i].v!=fa[u]&&e[i].v!=son[u])
build_tree(e[i].v,e[i].v);
}

inline int find(int u,int v){
int ret=0;
int f1=top[u],f2=top[v];
while(f1!=f2)
{
if(dep[f1]<dep[f2])
swap(f1,f2),swap(u,v);
ret+=query(w[f1],w[u],1,nodenum);
u=fa[f1];
f1=top[u];
}
if(dep[u]>dep[v])swap(u,v);
ret+=query(w[u],w[v],1,nodenum);
return ret;
}
int a[Vmax],b[Vmax];
int val[Vmax];//
void work(int n)
{
memset(siz, 0, sizeof(siz));
memset(sum, 0, sizeof(sum));

init();
int root=1;
fa[root]=nodenum=dep[root]=0;
for(int i=1;i<=n;i++)
scanf("%d",&val[i]);
for(int i=1;i<n;i++)
{
scanf("%d%d",&a[i],&b[i]);
a[i]++,b[i]++;
add_(a[i],b[i]);
add_(b[i],a[i]);
}
dfs(root);
build_tree(root,root);
for(int i=1;i<=n;i++)
update(w[i],val[i],1,nodenum);
}

}
using namespace poufen;
int main(){
int T,cas=1;
scanf("%d",&T);
while (T--) {
int n,q,op,x,y;
scanf("%d",&n);
work(n);
scanf("%d",&q);
printf("Case %d:\n",cas++);
while (q--) {
scanf("%d%d%d",&op,&x,&y);
if (op) {
update(w[x+1], y, 1, nodenum);
}
else{
printf("%d\n",find(x+1, y+1));
}
}
}
}