forked from EndlessCheng/codeforces-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
graph_tree.go
2155 lines (2028 loc) · 67.7 KB
/
graph_tree.go
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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
package copypasta
import (
"math"
"math/bits"
"reflect"
"slices"
"sort"
"unsafe"
)
/*
注:这里的代码偏向于数据结构,其余的树上统计类算法见 dp.go 中的树形 DP 部分
从特殊到一般:先思考一条链的情况,然后逐渐增加分支来思考一般的情况
NOTE: 对于有根树的题,可以考虑加上 g[0] = append(g[0], -1) 来简化代码
NOTE: 由于树上任意两点间的路径等价于两条点到根的路径的对称差,处理一些树上异或的问题可以往这个方向思考
NOTE: 注意特判整棵树只有一条边的情况,此时两个叶结点对应同一条边
NOTE: 一些树上点对问题,可以从「每条边所能产生的贡献」来思考 https://codeforces.com/problemset/problem/700/B
NOTE: 节点数小于 √n 的同层节点对不超过 n√n,节点数大于 √n 的层的数量小于 √n 个 https://codeforces.com/problemset/problem/1806/E
NOTE: 树上两点的关系:v 和 w 相等【特判】、v 是 w 的祖先、w 是 v 的祖先、其它(v 和 w 在两棵不同子树中)https://codeforces.com/problemset/problem/1778/E
NOTE: 记录从 x 到根的路径上的每个点到 x 的距离,就可以从 y 走到根的路径上,找到到 x 的距离,从而求出 y 到 x 的距离 https://codeforces.com/problemset/problem/1790/F
简单 DFS
- [2368. 受限条件下可到达节点的数目](https://leetcode.cn/problems/reachable-nodes-with-restrictions/) 1477
- [3004. 相同颜色的最大子树](https://leetcode.cn/problems/maximum-subtree-of-the-same-color/)(会员题)
https://codeforces.com/problemset/problem/580/C
https://codeforces.com/problemset/problem/34/D 1600
利用递归栈快速标记祖先节点 https://codeforces.com/problemset/problem/1774/E
树上统计(从下往上)典型题 https://codeforces.com/problemset/problem/766/E
不错的构造 https://codeforces.com/problemset/problem/260/D
分类讨论的好题 https://codeforces.com/problemset/problem/765/E
树上路径异或
LC2791 https://leetcode.cn/problems/count-paths-that-can-form-a-palindrome-in-a-tree/
http://poj.org/problem?id=3764
https://www.luogu.com.cn/problem/UVA13277 https://onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=878&page=show_problem&problem=5201
树上移动 move on tree
https://codeforces.com/problemset/problem/1774/E
https://en.wikipedia.org/wiki/Tree_traversal#Pre-order,_NLR
前序中序构造二叉树 + 判定是否合法 https://atcoder.jp/contests/abc255/tasks/abc255_f
树的最小表示:复杂度分析
https://leetcode.cn/problems/special-binary-string/solutions/1731760/on-log-n-by-hqztrue-nrmw/
其它
https://codeforces.com/problemset/problem/1491/E 2400
*/
// namespace
type tree struct{}
// 树哈希 Hashing root trees
// O(nlogn)
// https://codeforces.com/blog/entry/113465?#comment-1010870
// 判断是否为对称树(可以调整儿子顺序)https://codeforces.com/problemset/problem/1800/G
func (*tree) hash(g [][]int, root int) {
tid := map[string]int{}
var dfs func(int, int) int
dfs = func(v, fa int) int {
ids := make([]int, 0, len(g[v]))
for _, w := range g[v] {
if w != fa {
ids = append(ids, dfs(w, v))
}
}
slices.Sort(ids)
// do ids...
_ids := append(ids[:0:0], ids...) // 如果后面用不到 ids 可以去掉
sh := (*reflect.SliceHeader)(unsafe.Pointer(&_ids))
sh.Len *= bits.UintSize / 8
s := *(*string)(unsafe.Pointer(sh))
id, ok := tid[s]
if !ok {
id = len(tid) // 从 0 开始
tid[s] = id
}
return id
}
dfs(root, -1)
}
// 树同构
// AHU 算法
// https://oi-wiki.org/graph/tree-ahu/
// https://wwwmayr.in.tum.de/konferenzen/Jass08/courses/1/smal/Smal_Paper.pdf
// https://logic.pdmi.ras.ru/~smal/files/smal_jass08_slides.pdf
// todo https://www.zhihu.com/question/55484468/answer/991551284
// todo hashing 的一些正确姿势 https://zhuanlan.zhihu.com/p/104346215
//
// https://www.luogu.com.cn/problem/P5043
// 与换根 DP 结合:
// - https://codeforces.com/contest/763/problem/D
// - https://codeforces.com/problemset/problem/1794/E 参考代码 https://codeforces.com/contest/1794/submission/196015876
// https://open.kattis.com/problems/twochartsbecomeone
// https://codeforces.com/contest/342/problem/E
func (*tree) bfsMultiSources(g [][]int, starts []int) {
dis := make([]int, len(g))
for i := range dis {
dis[i] = 1e9
}
type pair struct{ v, fa int }
q := []pair{}
for _, v := range starts {
q = append(q, pair{v, -1})
}
bfs := func(q []pair) {
for _, p := range q {
dis[p.v] = 0
}
for len(q) > 0 {
p := q[0]
q = q[1:]
v := p.v
for _, w := range g[v] {
if w != p.fa && dis[v]+1 < dis[w] {
dis[w] = dis[v] + 1
q = append(q, pair{w, v})
}
}
}
}
bfs(q)
}
// DFS: 树上两点路径
func (*tree) path(st, end int, g [][]int) (path []int) {
var f func(v, fa int) bool
f = func(v, fa int) bool {
if v == st {
path = append(path, v)
return true
}
for _, w := range g[v] {
if w != fa {
if f(w, v) {
path = append(path, v)
return true
}
}
}
return false
}
// 反向寻找
f(end, -1)
return
}
// 预处理从 v 到 w 走一步的节点 move1[v][w]
// 定义 v 到 v 走一步的节点为 v
// https://codeforces.com/problemset/problem/1771/D
func (*tree) move1(g [][]int) [][]int {
move1 := make([][]int, len(g))
for i := range move1 {
move1[i] = make([]int, len(g))
}
for rt := range move1 {
var build func(int, int)
build = func(v, fa int) {
move1[v][rt] = fa
for _, w := range g[v] {
if w != fa {
build(w, v)
}
}
}
build(rt, rt)
}
return move1
}
// 两个基本信息:节点深度和子树大小
// 节点深度:
// - 深度与祖先:v 是 w 的祖先,当且仅当 dep[v]+dist(v,w)=dep[w]
// - 与 DFS 序结合,可以表达子树在某个深度上的一段信息(见 tree.inOutTimestamp)
// - 直径 中心(见 tree.diameter)
// 子树大小:
// - 与 DFS 序结合,把子树转化成区间(见 tree.subtreeSize)
// - 重心 点分治(见 tree.findCentroid 等)
// - 重链剖分(见 tree.heavyLightDecomposition)
// - 用于计算每条边对所有路径产生的贡献 https://codeforces.com/problemset/problem/1401/D
//
// 离线好题 https://codeforces.com/problemset/problem/570/D
// 这题的在线写法是把相同深度的 dfn 放入同一组(同组内的 dfn 是有序的),对于一棵子树的某个深度,在该组中必对应着连续的一段 dfn,二分即可找到
func (*tree) depthSize(n, root int, g [][]int, v int) {
dep := make([]int, n)
size := make([]int, n)
maxDep := make([]int, n) // EXTRA: 子树最大深度
var build func(int, int, int) int
build = func(v, fa, d int) int {
dep[v] = d
sz := 1
for _, w := range g[v] {
if w != fa {
sz += build(w, v, d+1)
maxDep[v] = max(maxDep[v], maxDep[w]+1)
}
}
size[v] = sz
return sz
}
build(root, -1, 0)
// EXTRA: 一种贪心策略是,将 g[v] 按照 maxDep 从大到小排序
// https://codeforces.com/contest/1510/submission/111986751
sort.Slice(g[v], func(i, j int) bool { return maxDep[g[v][i]] > maxDep[g[v][j]] })
}
// 树上每个子树的信息:子树大小,DFS 序(从 1 开始)
// 这样的话 [o.dfn, o.dfn+o.size-1] 就表示一棵子树,方便用树状数组/线段树维护
// 【时间戳的写法见后面】
// 讲解:https://leetcode.cn/problems/minimum-score-after-removals-on-a-tree/solution/dfs-shi-jian-chuo-chu-li-shu-shang-wen-t-x1kk/
//
// https://codeforces.com/problemset/problem/877/E 2000
// https://codeforces.com/problemset/problem/383/C 2000
// https://codeforces.com/problemset/problem/620/E 2100
// https://codeforces.com/problemset/problem/916/E 2400
// https://codeforces.com/problemset/problem/1110/F 2600
// https://codeforces.com/problemset/problem/163/E 2800 结合 AC 自动机
// https://ac.nowcoder.com/acm/contest/6383/B
func (*tree) subtreeSize(root int, g [][]int, a []int) {
newOrder := make([]int, 0, len(a))
nodes := make([]struct{ l, r int }, len(g)) // 闭区间 [l,r]
dfn := 0
var buildDFN func(int, int) int
buildDFN = func(v, fa int) (size int) {
newOrder = append(newOrder, a[v]) // 按照遍历顺序得到的点权顺序
dfn++ // 相当于 dfn 从 1 开始
nodes[v].l = dfn
for _, w := range g[v] {
if w != fa {
sz := buildDFN(w, v)
size += sz
}
}
nodes[v].r = nodes[v].l + size
size++
return
}
buildDFN(root, -1)
// 返回 [f 是 v 的祖先节点]
// f == v 的情况请单独处理
// LC2322 https://leetcode.cn/problems/minimum-score-after-removals-on-a-tree/ 2392
// 判断给定点集是否都在一条路径上 https://codeforces.com/contest/1702/problem/G2 2000
// https://codeforces.com/problemset/problem/1527/D 2400
isAncestor := func(f, v int) bool { return nodes[f].l < nodes[v].l && nodes[v].l <= nodes[f].r }
{
dfnToNodeID := make([]int, len(g)+1)
for v, o := range nodes {
dfnToNodeID[o.l] = v
}
}
{
// 如何使用?一般配合树状数组/线段树等数据结构
var v int
var update, query func(int, int)
var queryOne func(int)
// 注意 o.dfn 从 1 开始
o := nodes[v]
update(o.l, o.r) // 更新子树
query(o.l, o.r) // 查询子树
queryOne(o.l) // 查询单个节点
}
{
// 如果递归消耗太多内存,可以改为手动模拟栈
// 下面的代码是有向树,不需要传入 fa
// https://codeforces.com/contest/163/submission/233981400
root := 0
nodes := make([]struct{ l, r int }, len(g)) // 左闭右开
type stackInfo struct{ v, i int }
st := []stackInfo{{root, 0}}
nodes[root].l = 1
dfn := 1
for len(st) > 0 {
p := st[len(st)-1]
v, i := p.v, p.i
if i < len(g[v]) {
dfn++
w := g[v][i]
nodes[w].l = dfn
st[len(st)-1].i++
st = append(st, stackInfo{w, 0})
} else {
nodes[v].r = dfn + 1
st = st[:len(st)-1]
}
}
}
_ = isAncestor
}
// 每个节点的入出时间戳
// 应用:可以 O(1) 判断 fa 是否为 v 的祖先节点(是否在根到 v 的路径上)
// 视频讲解 https://www.bilibili.com/video/BV1pW4y1r7xs/
// 例题 https://codeforces.com/problemset/problem/1328/E
// LC2322 https://leetcode.cn/problems/minimum-score-after-removals-on-a-tree/ 2392
// 好题(需要充分利用入出时间戳的性质)https://codeforces.com/problemset/problem/1528/C
// 给定一棵 n 个点的完全 k 叉树的先序遍历,还原这棵树 https://ac.nowcoder.com/acm/contest/9247/B
// 先用 BFS 建树,然后 DFS 跑建好的树
// 也可以不用 BFS,根据完全 k 叉树的性质直接建图:(点的范围从 0 到 n-1)
// for w := 1; w < n; w++ {
// v := (w - 1) / k
// g[v] = append(g[v], w)
// }
// 其他:见 mo.go 中的树上莫队部分
func (*tree) inOutTimestamp(g [][]int, root int) {
// DFS 序
timeIn := make([]int, len(g))
timeOut := make([]int, len(g))
at := make([]int, len(g)+1)
clock := 0
var f func(v, fa int)
f = func(v, fa int) {
clock++
timeIn[v] = clock
at[clock] = v
for _, w := range g[v] {
if w != fa {
f(w, v)
}
}
timeOut[v] = clock
}
f(root, -1)
// 返回 [f 是 v 的祖先节点]
// f == v 的情况请单独处理
// https://codeforces.com/problemset/problem/916/E
isAncestor := func(f, v int) bool { return timeIn[f] < timeIn[v] && timeIn[v] <= timeOut[f] }
isAncestor2 := func(v, w int) bool { return isAncestor(v, w) || isAncestor(w, v) }
{
// 与深度时间戳结合,二分求某个子树在某个深度的节点范围
// https://www.lanqiao.cn/problems/5892/learning/?contest_id=145
// https://codeforces.com/problemset/problem/1076/E 1900
// https://codeforces.com/problemset/problem/208/E 2100
// - 加强版 https://www.luogu.com.cn/problem/P5384(需要差分)
// https://codeforces.com/problemset/problem/570/D 2200
// https://codeforces.com/problemset/problem/246/E 2400
// https://atcoder.jp/contests/abc202/tasks/abc202_e
// https://www.luogu.com.cn/problem/P7768
var a []int // 点权 read...
type info struct{ tin, tout, dep int }
nodes := make([]info, len(g))
depTS := make([][]int, len(g))
rowVal := make([][]int, len(g))
ts := 0
var f func(int, int, int)
f = func(v, fa, d int) {
ts++
nodes[v].tin = ts
nodes[v].dep = d
depTS[d] = append(depTS[d], ts)
rowVal[d] = append(rowVal[d], a[v])
for _, w := range g[v] {
if w != fa {
f(w, v, d+1)
}
}
nodes[v].tout = ts
}
f(root, -1, 0)
// 返回子树 v 中的绝对深度为 d 的这一排节点在 depTS[d] 中的下标范围 [l,r)
// 结合 RMQ 可以求出这一排节点的最大点权
// d += nodes[v].dep // 如果 d 是从 v 开始算的话(相对深度)还要加上节点在整棵树的深度
query := func(v, d int) (int, int) {
nf := nodes[v]
l := sort.SearchInts(depTS[d], nf.tin)
r := sort.SearchInts(depTS[d], nf.tout+1)
return l, r
}
_ = query
}
_, _ = isAncestor, isAncestor2
}
// 树上最小路径覆盖,要求路径之间不相交,即每个顶点恰好被覆盖一次(路径长度可以为 0,即一个点)
// 贪心做法是对每个点及其子树,尽量让这个点能够拼接两个子树的路径,从而形成一条路径(把这个点当作「拐点」)
// DP 做法是定义 dp[i][0/1] 表示以 i 为根的子树的最小路径覆盖数,0 即 i 不与父节点构成路径(当作拐点),1 即 i 与父节点构成路径(不当作拐点)
// - DP 写法见 https://blog.csdn.net/clove_unique/article/details/52724434
// https://en.wikipedia.org/wiki/Path_cover
// https://codeforces.com/problemset/problem/618/D
func (*tree) minPathCover(g [][]int) int {
// 考虑最小路径覆盖中,在树上的边数
// 显然每多一条路径覆盖,在树上的边数就少一条
// 因此有:最小路径覆盖数=n-在树上的最大边数
edgeNum := 0
var f func(int, int) bool
f = func(v, fa int) bool {
c := 0
for _, w := range g[v] {
if w != fa && f(w, v) {
c++
}
}
if c < 2 {
edgeNum += c
return true // 可以与父节点合并
}
edgeNum += 2
return false // 不与父节点合并
}
f(0, -1)
return len(g) - edgeNum
}
// 树的直径/最长链 (树形 DP 做法另见 dp.go 中的 diameter)
// 返回树的某条直径的两端点以及直径长度(最长链长度)
// 树的中心:树的直径的中点。直径长度为偶数时有一个,为奇数时有两个
// - 如果给每条边加一个中点,那么可以保证树的中心为一个
// 性质:
// - 直径的中点到所有叶子的距离和最小
// - 对于两棵树,记第一棵树直径两端点为 u 和 v,第二棵树直径两端点为 x 和 y。若用一条边连接两棵树,则新树存在某条直径,其两端点一定是 u,v,x,y 中的两个点
//
// 为什么不能用类似找直径的做法求**图**的直径呢?比如做两次 BFS
// 反例:
// 1 2
// 1 3
// 2 4
// 3 5
// 2 5
// 从 1 出发跑 BFS,是可能会把 5 当成最远点的,然后从 5 出发跑 BFS 就算错了,正确的应该是从 4 出发跑 BFS
//
// 随机树的直径 https://zhuanlan.zhihu.com/p/398621082
// 树的直径与重心(含动态维护) https://www.luogu.com.cn/blog/Loveti/problem-tree
//
// LC1245 https://leetcode.cn/problems/tree-diameter/
// https://codeforces.com/problemset/problem/1404/B 1900
// https://codeforces.com/problemset/problem/455/C 2100
// https://codeforces.com/problemset/problem/734/E 2100 转换的好题
// https://codeforces.com/problemset/problem/911/F 2400 贪心
// https://codeforces.com/problemset/problem/1819/C 2400
// https://codeforces.com/problemset/problem/1617/E 2700 转换成求部分直径
// - https://oeis.org/A072339
// https://www.luogu.com.cn/problem/P3304 必须边
// https://www.luogu.com.cn/problem/T238762?contestId=65460 求树中任意一个与 x 距离为 k 的点
// https://www.lanqiao.cn/problems/5890/learning/?contest_id=145
func (*tree) diameter(st int, g [][]int) (int, int, int) {
maxD, u := -1, 0
var findMaxDepth func(int, int, int)
findMaxDepth = func(v, fa, d int) {
if d > maxD {
maxD, u = d, v
}
for _, w := range g[v] {
if w != fa {
findMaxDepth(w, v, d+1) // d+e.wt
}
}
}
findMaxDepth(st, -1, 0)
dv := u
maxD = -1
findMaxDepth(u, -1, 0)
dw := u
// EXTRA: 获取所有直径端点
// 任意直径端点都可以从其中的一条直径的端点之一出发获得
// 找出直径 dv-dw 后,对两个端点各自跑一次 DFS,即可找出全部直径端点
// 注:这种写法加上上面,总共用了四次 DFS,可以仅需两次,见 https://codeforces.com/contest/592/submission/119472149
// 下标最小的直径端点 https://codeforces.com/problemset/problem/592/D
// 树上非严格次长距离 https://ac.nowcoder.com/acm/contest/9557/C(另一种做法见下面的 secondDiameter)
isEnd := make([]bool, len(g))
var findAllEnds func(v, fa, d int)
findAllEnds = func(v, fa, d int) {
if d == maxD {
isEnd[v] = true
return
}
for _, w := range g[v] {
if w != fa {
findAllEnds(w, v, d+1)
}
}
}
findAllEnds(dv, -1, 0)
findAllEnds(dw, -1, 0)
ends := []int{}
for v, e := range isEnd {
if e {
ends = append(ends, v)
}
}
// EXTRA: 获取所有在直径上的点
// https://ac.nowcoder.com/acm/contest/9753/C
onDiameter := make([]bool, len(g))
var findVerticesOnDiameter func(v, fa, d int) bool
findVerticesOnDiameter = func(v, fa, d int) bool {
if d == maxD {
onDiameter[v] = true
return true
}
for _, w := range g[v] {
if w != fa {
if findVerticesOnDiameter(w, v, d+1) {
onDiameter[v] = true
}
}
}
return onDiameter[v]
}
findVerticesOnDiameter(dv, -1, 0)
findVerticesOnDiameter(dw, -1, 0)
dvs := []int{}
for v, on := range onDiameter {
if on {
dvs = append(dvs, v)
}
}
// EXTRA: 获取直径上的所有节点 path
// path[len(path)/2] 即为树的中心(之一)
// https://codeforces.com/problemset/problem/1819/C
path := []int{}
var findDiameterPath func(v, fa int) bool
findDiameterPath = func(v, fa int) bool {
if v == dw {
path = append(path, v)
return true
}
for _, w := range g[v] {
if w != fa && findDiameterPath(w, v) {
path = append(path, v)
return true
}
}
return false
}
findDiameterPath(dv, -1)
// EXTRA: 求出无根树上每个点的最远点及距离(紫书 p.282 思考题)
// 从任意直径的两个端点出发跑 DFS,取最大值
// https://codeforces.com/problemset/problem/337/D 2000
// https://codeforces.com/problemset/problem/911/F 2400
// 每个点相距为 k 的点 https://atcoder.jp/contests/abc267/tasks/abc267_f
farthest := make([]struct{ v, d int }, len(g))
for i := range farthest {
farthest[i].d = -1
}
var findFarthest func(int, int, int, int)
findFarthest = func(v, fa, d, tar int) {
if d > farthest[v].d {
farthest[v].d = d
farthest[v].v = tar
}
for _, w := range g[v] {
if w != fa {
findFarthest(w, v, d+1, tar)
}
}
}
findFarthest(dv, -1, 0, dv)
findFarthest(dw, -1, 0, dw)
return dv, dw, maxD
}
// 非严格次长直径
// https://ac.nowcoder.com/acm/contest/9557/C
func (*tree) secondDiameter(st int, g [][]int) int {
n := len(g)
maxD, u, cntD := -1, 0, make([]int, n)
var f func(v, fa, d int)
f = func(v, fa, d int) {
if d > maxD {
maxD, u = d, v
}
cntD[d]++
for _, w := range g[v] {
if w != fa {
f(w, v, d+1)
}
}
}
maxD = -1
f(st, -1, 0)
// 从直径的两端点 p q 出发求深度列表,最大的两个为直径 p-q 和 q-p,倒数第三个为非严格次长直径
// 这里用基数排序
maxD, cntD = -1, make([]int, n)
f(u, -1, 0)
f(u, -1, 0)
if cntD[maxD] > 2 {
return maxD
}
return maxD - 1
}
// 树的重心
// 性质:
// 以重心为根时,最大子树结点数最少,且所有子树的大小都 < 节点数/2,或者说最大子树结点数 < 节点数/2
// 反之,若存在一棵子树其大小 ≥ 节点数/2,则重心在该子树中
// 一棵树最多有两个重心,且相邻
// 拥有奇数个节点的树只有一个重心
// 树中所有点到某个点的距离和中,到重心的距离和是最小的;如果有两个重心,那么距离和一样
// 把两棵树通过一条边相连得到一棵新的树,新重心在旧重心的路径上
// 在一棵树上添加或删除一个叶结点后,重心保持不变或移动至相邻的结点上(换句话说,重心个数可能一个变两个,两个变一个,或者说至多移动半条边)
// 树的重心一定在根节点的重链上 https://www.luogu.com.cn/problem/P5666
// 树的重心一定在它重儿子的重心到根节点的路径上 https://www.luogu.com.cn/problem/P5666
// 常用作点分治中的一个划分步骤
// https://oi-wiki.org/graph/tree-centroid/
// https://en.wikipedia.org/wiki/Tree_(graph_theory)#Properties
// Every tree has a center consisting of one vertex or two adjacent vertices.
// The center is the middle vertex or middle two vertices in every longest path.
// Similarly, every n-vertex tree has a centroid consisting of one vertex or two adjacent vertices.
// In the first case removal of the vertex splits the tree into subtrees of fewer than n/2 vertices.
// In the second case, removal of the edge between the two centroidal vertices splits the tree into two subtrees of exactly n/2 vertices.
// 树的直径与重心(含动态维护) https://www.luogu.com.cn/blog/Loveti/problem-tree
// 树重心的性质及动态维护 https://www.cnblogs.com/qlky/p/5781081.html
// 求两个重心 https://codeforces.com/problemset/problem/1406/C
// 求每棵子树的重心 http://codeforces.com/problemset/problem/685/B
// Edge replacement 后哪些点可以是重心 https://codeforces.com/problemset/problem/708/C
func (*tree) findCentroid(n, root int, g [][]int) (centroid int) {
minOfMaxSubSize := math.MaxInt
var findCt func(int, int) int
findCt = func(v, fa int) int {
size := 1
maxSubSize := 0
for _, w := range g[v] {
if w != fa {
sz := findCt(w, v)
maxSubSize = max(maxSubSize, sz)
size += sz
}
}
maxSubSize = max(maxSubSize, n-size) // 向上的子树大小
if maxSubSize < minOfMaxSubSize {
minOfMaxSubSize = maxSubSize
centroid = v
}
return size
}
findCt(root, -1)
return
}
// 点分治 重心分解(CD, Centroid Decomposition)
// 适合处理树上路径相关问题
// 考察完经过某个重心的所有路径,后面就无需再考察这个重心了,直接将其删除
// 每次以重心为根递归处理,这样做递归深度不会超过 O(logn)
// 或者说,每个点至多被 O(log n) 个在重心拐弯的路径覆盖
// https://oi-wiki.org/graph/tree-divide/
// https://zhuanlan.zhihu.com/p/359209926
// https://codeforces.com/blog/entry/81661
// https://www.luogu.com.cn/blog/user9012/dian-fen-zhi-lve-xie
// https://liu-cheng-ao.blog.uoj.ac/blog/2969
// todo 重心树 代码 https://www.luogu.com.cn/record/103317317
//
// 模板题 https://www.luogu.com.cn/problem/P4178
// - http://poj.org/problem?id=1741
// todo 无需去重的做法(染色法)https://www.luogu.com.cn/blog/1239004072Angel/solution-p4178
// 多个询问 https://www.luogu.com.cn/problem/P3806
// - http://poj.org/problem?id=2114
// https://www.luogu.com.cn/problem/P4149
// 也可以树形 DP https://codeforces.com/problemset/problem/161/D 1800
// https://codeforces.com/problemset/problem/321/C 2100
// https://codeforces.com/problemset/problem/914/E 2400
// 好题 https://codeforces.com/contest/1174/problem/F 2400
// - https://codeforces.com/contest/1174/submission/82371930
// todo https://codeforces.com/contest/776/problem/F 2800
// https://www.luogu.com.cn/problem/P2664
// https://www.luogu.com.cn/problem/SP2939
// ∑∑min(a[i],a[j])*dis(i,j) https://ac.nowcoder.com/acm/contest/11171/D
// UVa12161 https://onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=3313
// 点分治 · 其一
// 遍历右边的子树 B,去看左边的子树 A(路径是 A 中的点 - 重心 - B 中的点)
func (tree) centroidDecomposition(g [][]struct{ to, wt int }) int {
deleted := make([]bool, len(g))
// 注:其实只需要保存 ct 的邻居的 size,但这并不好维护
size := make([]int, len(g))
var findCentroid func(int, int, int) (int, int, int)
findCentroid = func(v, fa, compSize int) (minSize, ct, faCt int) {
minSize = math.MaxInt
maxSubSize := 0
size[v] = 1
for _, e := range g[v] {
w := e.to
if w != fa && !deleted[w] {
minSizeW, ctW, faCtW := findCentroid(w, v, compSize)
if minSizeW < minSize {
minSize, ct, faCt = minSizeW, ctW, faCtW
}
maxSubSize = max(maxSubSize, size[w])
size[v] += size[w]
}
}
maxSubSize = max(maxSubSize, compSize-size[v])
if maxSubSize < minSize {
minSize, ct, faCt = maxSubSize, v, fa
}
return
}
ans := 0
tmp := make([]int, len(g))
var dfs func(int, int, int)
dfs = func(v, fa, compSize int) {
_, ct, faCt := findCentroid(v, fa, compSize)
//if size[v] == 1 {
// return
//}
pathValSet := map[int]bool{0: true} // 0 表示重心的数据
for _, e := range g[ct] {
w := e.to
if deleted[w] {
continue
}
tmp := tmp[:0]
var f func(int, int, int)
f = func(v, fa, pathVal int) {
// do path & pathValSet like 2sum
tmp = append(tmp, pathVal)
for _, e := range g[v] {
if w := e.to; w != fa && !deleted[w] {
f(w, v, pathVal+e.wt)
}
}
}
f(w, ct, e.wt)
// 注意在递归结束后,才把 tmp 的数据加入 pathValSet
// 否则会把在同一棵子树内的数据当作另一棵子树的数据
for _, pathVal := range tmp {
pathValSet[pathVal] = true
}
}
// 删除重心
deleted[ct] = true
for _, e := range g[ct] {
w := e.to
if !deleted[w] {
if w != faCt {
dfs(w, ct, size[w])
} else {
dfs(w, ct, compSize-size[ct])
}
}
}
}
dfs(0, -1, len(g))
return ans
}
// 点分治 · 其二
// 适用场景:对每个点,计算和这个点有关的路径信息
// 1. 从重心出发,统计整个重心连通块的路径信息
// 2. 对于重心的子树 A,先去掉子树 A 的路径信息
// 3. 然后计算子树 A 的路径信息
// 4. 计算完毕后,恢复子树 A 的路径信息,处理重心的下一棵子树
// 5. 去掉整个重心连通块的路径信息,处理下一个重心连通块
// 下面的代码以 https://codeforces.com/problemset/problem/914/E 2400 为例
func (tree) centroidDecomposition2(g [][]int, s string) []int {
deleted := make([]bool, len(g))
size := make([]int, len(g))
var findCentroid func(int, int, int) (int, int, int)
findCentroid = func(v, fa, compSize int) (minSize, ct, faCt int) {
minSize = math.MaxInt
maxSubSize := 0
size[v] = 1
for _, w := range g[v] {
if w != fa && !deleted[w] {
minSizeW, ctW, faCtW := findCentroid(w, v, compSize)
if minSizeW < minSize {
minSize, ct, faCt = minSizeW, ctW, faCtW
}
maxSubSize = max(maxSubSize, size[w])
size[v] += size[w]
}
}
maxSubSize = max(maxSubSize, compSize-size[v])
if maxSubSize < minSize {
minSize, ct, faCt = maxSubSize, v, fa
}
return
}
ans := make([]int, len(g))
for i := range ans {
ans[i] = 1
}
// 更新从 ct 出发的路径信息
cnt := [1 << 20]int{}
var updateCC func(int, int, int, int)
updateCC = func(v, fa, delta, pathMask int) {
pathMask ^= 1 << (s[v] - 'a')
cnt[pathMask] += delta
for _, w := range g[v] {
if w != fa && !deleted[w] {
updateCC(w, v, delta, pathMask)
}
}
}
// 计算「经过 v 向上,在重心拐弯,到其它子树」的路径信息
// pathMask 从 ct 的儿子开始
// 每个 v 至多被 O(log n) 个在重心拐弯的路径覆盖
var calc func(int, int, int) int
calc = func(v, fa, pathMask int) int {
pathMask ^= 1 << (s[v] - 'a')
// 单独计算:从 v 出发的路径信息
res := cnt[pathMask]
for i := 1; i < len(cnt); i <<= 1 {
res += cnt[pathMask^i]
}
// 把 v 下面的也加上,这样最终算出的是经过 v 的路径信息
for _, w := range g[v] {
if w != fa && !deleted[w] {
res += calc(w, v, pathMask)
}
}
ans[v] += res
return res
}
var dfs func(int, int, int)
dfs = func(v, fa, compSize int) {
_, ct, faCt := findCentroid(v, fa, compSize)
updateCC(ct, -1, 1, 0)
// 单独计算:从 ct 出发的路径信息
res := cnt[0]
for i := 1; i < len(cnt); i <<= 1 {
res += cnt[i]
}
// 再加上经过 ct 的路径信息
for _, w := range g[ct] {
if deleted[w] {
continue
}
// 排除 w 子树后再计算
updateCC(w, ct, -1, 1<<(s[ct]-'a'))
res += calc(w, ct, 0)
updateCC(w, ct, 1, 1<<(s[ct]-'a'))
}
// v->w 和 w->v 算了两次,同时去掉 [v] 这一个点的路径信息(注意初始化的时候 ans[i] = 1)
ans[ct] += res / 2
updateCC(ct, -1, -1, 0)
// 删除重心
deleted[ct] = true
for _, w := range g[ct] {
if !deleted[w] {
if w != faCt {
dfs(w, ct, size[w])
} else {
dfs(w, ct, compSize-size[ct])
}
}
}
}
dfs(0, -1, len(g))
return ans
}
// 动态点分治 点分树
// 维护 x 到 ct 的信息和 ct 到其余点的信息,就可以快速地处理 x 到其余所有点的信息(对于一个 x 来说,它的 ct 有 O(logn) 个)
// 适用于不关心树的形态的问题,比如路径问题,联通块问题,寻找关键点问题等等
// 提示:结合【贡献法】
// https://oi-wiki.org/graph/dynamic-tree-divide/
// https://oi-wiki.org/graph/tree-divide/#%E7%82%B9%E5%88%86%E6%A0%91
//
// 无修改 https://www.luogu.com.cn/problem/P3241
// 单点修改 https://www.luogu.com.cn/problem/P6329
// todo 点分树+堆 https://www.luogu.com.cn/problem/P2056 https://www.luogu.com.cn/problem/SP2666
// 借助点分树移动答案 https://www.luogu.com.cn/problem/P3345
// 动态加点的点分树+平衡树 https://www.luogu.com.cn/problem/P3920
// - 除去动态加点就是点分树套路。加点时默认新点的点分父亲为原树父亲,当某点分子树不平衡度超过某个阈值,重新点分治即可。
// 边分树+虚树 https://www.luogu.com.cn/problem/P4220
// 边分树+虚树 https://www.luogu.com.cn/problem/P4565
// 思维 | 最大深度最小的点分树 https://www.luogu.com.cn/problem/P5912
func (*tree) centroidDecompositionTree(g [][]struct{ to, wt int }, root int, a []int) {
deleted := make([]bool, len(g))
size := make([]int, len(g))
var findCentroid func(int, int, int) (int, int, int)
findCentroid = func(v, fa, compSize int) (minSize, ct, faCt int) {
minSize = math.MaxInt
maxSubSize := 0
size[v] = 1
for _, e := range g[v] {
w := e.to
if w != fa && !deleted[w] {
if minSizeW, ctW, faCtW := findCentroid(w, v, compSize); minSizeW < minSize {
minSize, ct, faCt = minSizeW, ctW, faCtW
}
maxSubSize = max(maxSubSize, size[w])
size[v] += size[w]
}
}
maxSubSize = max(maxSubSize, compSize-size[v])
if maxSubSize < minSize {
minSize, ct, faCt = maxSubSize, v, fa
}
return
}
// paCts[x] 存储着 x 到其 ct 的信息(x 在 O(logn) 个重心连通块中)
// paCts[x][0] 是最大的重心连通块,paCts[x][-1] 是最小的重心连通块
// 注意:这个顺序不能表示与 x 的远近关系(可能 x 就在 paCts[x][0] 旁边,但离 paCts[x][1] 比较远)
type disInfo struct{ ct, sonI, ctDis int }
paCts := make([][]disInfo, len(g))
// sonInfo[ct][i] 存储着 ct 到其重心连通块内的 g[ct][i] 这棵子树的其余点的信息
sonInfo := make([][]fenwick, len(g))
// mergeSonInfo[ct] 存储着 ct 到其重心连通块内的其余点的信息(不含 ct 这个点)
mergeSonInfo := make([]fenwick, len(g))
var dfs func(int, int, int)
dfs = func(v, fa, compSize int) {
_, ct, faCt := findCentroid(v, fa, compSize)
sonInfo[ct] = make([]fenwick, len(g[ct]))
totA := make(fenwick, compSize+1)
for idx, e := range g[ct] {
w := e.to
if deleted[w] {
continue
}
var sizeW int
if w != faCt {
sizeW = size[w]
} else {
sizeW = compSize - size[ct]
}
sumA := make(fenwick, sizeW+1)
var f func(int, int, int)
f = func(v, fa, d int) {
paCts[v] = append(paCts[v], disInfo{ct, idx, d})
sumA[d] += a[v]
totA[d] += a[v]
for _, e := range g[v] {
w := e.to
if w != fa && !deleted[w] {
f(w, v, d+e.wt) // d+1
}
}
}
f(w, ct, e.wt) // 1
for i := 1; i <= sizeW; i++ {
if j := i + i&-i; j <= sizeW {
sumA[j] += sumA[i]
}
}
sonInfo[ct][idx] = sumA
}
for i := 1; i <= compSize; i++ {
if j := i + i&-i; j <= compSize {
totA[j] += totA[i]
}
}
mergeSonInfo[ct] = totA
deleted[ct] = true
for _, e := range g[ct] {
w := e.to
if deleted[w] {
continue
}
if w != faCt {
dfs(w, ct, size[w])
} else {
dfs(w, ct, compSize-size[ct])
}
}
}
dfs(root, -1, len(g))
update := func(x, val int) {
delta := val - a[x]
a[x] = val
for _, p := range paCts[x] {
sonInfo[p.ct][p.sonI].update(p.ctDis, delta)
mergeSonInfo[p.ct].update(p.ctDis, delta)
}
}
// https://www.luogu.com.cn/problem/P6329
query := func(cur, k int) int {
// 单独统计 cur