MYF

SPOJ-QTREE Query on a tree

题目链接

SPOJ-QTREE

方法:树链剖分 边权型 单点更新 区间RMQ

题目分析

题目大意

给出n-1条边的权,两种操作,一种更新一条边的权值,另一种查询给定两个点之间的RMQ

解析

今天对这题豁然开朗。

对于一条边i来讲,端点分别为a[i], b[i],当b[i]的深度较大时,w[b[i]]记录的为当前边。在find()函数中最后如果找到一个公共的重链,得到两个点uv,我们令dep[u] < dep[v],则求这两个点之间的RMQ值,我们需要找的实际上是w[son[u]]~w[v]这段距离w[son[u]]表示是u-son[u]这条边,需要注意一下

代码

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
167
168
169
#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 = 1e4 + 5;//点的数量
const int Emax =2e4+5;//边的数量 小于Vmax的两倍
namespace segment_tree{
int sum[Vmax<<2];
void pushup(int rt){
sum[rt]=max(sum[rt<<1],sum[rt<<1|1]);
}

void update(int pos,int val,int l,int r,int rt=1){
if (l==r) {
sum[rt]=val;
return;
}
int m=(l+r)>>1;
if (pos<=m) update(pos, val, lson);
else update(pos, val, 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 res=0;
if (L<=m) res=max(res,query(L, R, lson));
if (R>m) res=max(res,query(L, R, rson));
return res;
}
}
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);
}

int find(int u,int v){
int ret=-INF;
int f1=top[u],f2=top[v];
while(f1!=f2)
{
if(dep[f1]<dep[f2])
swap(f1,f2),swap(u,v);
ret = max(ret, query(w[f1],w[u],1,nodenum));
u=fa[f1];
f1=top[u];
}
if(dep[u]>dep[v])swap(u,v);
ret = max(ret, query(w[son[u]],w[v],1,nodenum));
return ret;
}

int a[Vmax],b[Vmax],c[Vmax];

}
using namespace poufen;
int main(){
int n ,x, y;
int T;
scanf("%d", &T);
while (T--) {
scanf("%d",&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%d%d",&a[i],&b[i],&c[i]);
add_(a[i],b[i]);
add_(b[i],a[i]);
}
dfs(root);

build_tree(root,root);

for(int i=1;i<n;i++){
int u = a[i];
int v = b[i];
if (dep[u] > dep[v]) { //保证v是被指向的点,也就是深度较大的点
swap(u, v);
swap(a[i], b[i]);
}
update(w[v],c[i],1,nodenum);
}

char op[10];
while (~scanf("%s",op)&&op[0]!='D') {
scanf("%d%d",&x,&y);
if (op[0]=='Q') {
printf("%d\n",find(x, y));
}
else{
update(w[b[x]], y, 1, nodenum);
}
}

}
return 0;
}