MYF

POJ 2763 Housewife Wind

题目链接

POJ 2763

题目类型:树链剖分(边权型+单点更新+区间查询)

题目分析

题目大意

Wind到处接孩子问题。

给出一个树形图,n个点,q次操作,s点出发,给出n-1条边,给出走每条边花费的时间,q次操作有两种,一种是更新一条边的时间,一种是询问从当前位置到某一点的时间。每次询问之后,都要将当前位置s更新为询问的目的位置。

解析

边权型的题目,我们在树链剖分建图时建立的w[]数组,实际上是对于边建的,对于一条无向边,我们可以根据他的深度来确定那个点是被指向的点v,从而得到w[v]就是树链剖分中的这条边的编号。我们每次更新这个编号的边的时间花费,然后再用树形剖分的查找方法求和即可。

代码

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
#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 = 1e5 + 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 f1=top[u],f2=top[v],ret=0;
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(u==v)return ret;
if(dep[u]>dep[v])swap(u,v);
return ret+=query(w[son[u]],w[v],1,nodenum);
}

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

}
using namespace poufen;
int main(){
int n, q, s;
while (scanf("%d%d%d",&n,&q,&s)!=EOF) {
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);
}

while (q--) {
int op,i,ww;
scanf("%d",&op);
if (op) {
scanf("%d%d",&i,&ww);
update(w[b[i]], ww, 1, nodenum);
}
else{
scanf("%d",&ww);
cout<<find(s, ww)<<endl;
s = ww;
}
}
}
}