2021牛客寒假算法基础集训营6 H. 动态最小生成树

链接

https://ac.nowcoder.com/acm/contest/9986/H

题意

有一张 $n$ 个点 $m$ 条边的图,每条边连接点 $u_i,v_i$,边权为 $w_i$。他想进行 $q$ 次操作,有如下两种类型:

  1. 修改第 $x$ 条边为连接点 $y,z$,边权为 $t$;
  2. 查询只用编号在 $[l,r]$ 范围内的边,得到的最小生成树权值是多少。

数据范围:

$1 \le n \le 200,1 \le m \le 30000,1 \le q \le 30000,1 \le u_i,v_i \le n,1 \le w_i \le 100000$。

$1\le x\le m,1\le y,z\le n,1\le t\le 100000$。

思路

对 $m$ 条边建立一颗线段树,每个节点维护该区间能够构成最小生成树的边(从小到大),节点向上 push 合并最小生成树的过程类似归并排序。

代码

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
#include <bits/stdc++.h>
#define SZ(x) (int)(x).size()
#define ALL(x) (x).begin(),(x).end()
#define PB push_back
#define EB emplace_back
#define MP make_pair
#define FI first
#define SE second
using namespace std;
typedef double DB;
typedef long double LD;
typedef long long LL;
typedef unsigned long long ULL;
typedef pair<int,int> PII;
typedef vector<int> VI;
typedef vector<PII> VPII;
// head
const int M=3e4+5;
const int N=205;
int n,fa[N],ls[M<<2],rs[M<<2],a[M<<2][N],res[N],pre[N];
struct E {
int u,v,w;
E() {}
E(int u,int v,int w):u(u),v(v),w(w) {}
}e[M];
int find(int x) {
return fa[x]==x?x:fa[x]=find(fa[x]);
}
void push_up(int *t,int *t1,int *t2) {
for(int i=1;i<=n;i++) fa[i]=i;
int i=1,j=1,cnt=0;
while(t1[i]||t2[j]) {
int x=t1[i],y=t2[j];
if(!y||x&&y&&e[x].w<e[y].w) {
++i;
int tu=find(e[x].u),tv=find(e[x].v);
if(tu==tv) continue;
fa[tu]=tv;
t[++cnt]=x;
}
else if(!x||x&&y&&e[x].w>=e[y].w) {
++j;
int tu=find(e[y].u),tv=find(e[y].v);
if(tu==tv) continue;
fa[tu]=tv;
t[++cnt]=y;
}
}
t[++cnt]=0;
}
void build(int p,int l,int r) {
ls[p]=l,rs[p]=r;
if(l==r) {a[p][1]=l;return;}
int mid=l+r>>1;
build(p<<1,l,mid);
build(p<<1|1,mid+1,r);
push_up(a[p],a[p<<1],a[p<<1|1]);
}
void update(int p,int x) {
if(ls[p]==rs[p]) {a[p][1]=x;return;}
int mid=ls[p]+rs[p]>>1;
if(x<=mid) update(p<<1,x);
else update(p<<1|1,x);
push_up(a[p],a[p<<1],a[p<<1|1]);
}
void query(int p,int l,int r) {
if(ls[p]>=l&&rs[p]<=r) {
push_up(res,pre,a[p]);
for(int i=1;;i++) {
pre[i]=res[i];
if(!res[i]) break;
}
return;
}
int mid=ls[p]+rs[p]>>1;
if(l<=mid) query(p<<1,l,r);
if(r>mid) query(p<<1|1,l,r);
}
int main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
int m,q;
cin>>n>>m>>q;
for(int i=1;i<=m;i++) cin>>e[i].u>>e[i].v>>e[i].w;
build(1,1,m);
for(int i=1;i<=q;i++) {
int o;
cin>>o;
if(o==1) {
int x,y,z,t;
cin>>x>>y>>z>>t;
e[x]=E(y,z,t);
update(1,x);
}
else {
int l,r;
cin>>l>>r;
for(int i=1;pre[i];i++) pre[i]=0;
query(1,l,r);
int sum=0,tot=0;
for(int i=1;res[i];i++) ++tot,sum+=e[res[i]].w;
if(tot==n-1) cout<<sum<<'\n';
else cout<<"Impossible"<<'\n';
}
}
return 0;
}