-
Notifications
You must be signed in to change notification settings - Fork 3
/
Solution.java
1550 lines (1428 loc) · 44 KB
/
Solution.java
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
import java.util.*;
/**
* @author lbs
* @description leetcode刷题
*/
class Solution {
/**
* @Author LBS59
* @Description 单链表的实现
* @Date 11:30 2022/5/31
**/
private static class ListNode {
int val;
ListNode next;
ListNode() {}
ListNode(int val) {this.val = val;}
ListNode(int val, ListNode next) {
this.val = val;
this.next = next;
}
}
/**
* @Author LBS59
* @Description 二叉树实现
* @Date 11:27 2022/5/31
**/
private static class TreeNode {
int val;
TreeNode left;
TreeNode right;
TreeNode() {}
TreeNode(int val) {this.val = val;}
TreeNode(int val, TreeNode left, TreeNode right) {
this.val = val;
this.left = left;
this.right = right;
}
}
/**
* @Author LBS59
* @Description 多叉树实现
* @Date 11:27 2022/5/31
**/
private static class Node {
public int val;
public List<Node> children;
public Node() {}
public Node(int val) {
this.val = val;
}
public Node(int val, List<Node> children) {
this.val = val;
this.children = children;
}
}
/**
* @Author LBS59
* @Description 快排和归并模板
* @Date 11:28 2022/5/31
**/
private static class Sort {
int n;
int[] arr, tmp;
public Sort(int n) {
this.n = n;
arr = new int[n];
tmp = new int[n];
}
/**
* 快排模版
* @param l 左边界
* @param r 右边界
*/
public void quickSort(int l, int r) {
if (l >= r) {
return;
}
int x = arr[l], i = l - 1, j = r + 1;
while (i < j) {
do {
i++;
} while (arr[i] < x);
do {
j--;
} while (arr[j] > x);
if (i < j) {
int temp = arr[i];
arr[i] = arr[j];
arr[j] = temp;
}
}
quickSort(l, j);
quickSort(j + 1, r);
}
/**
* 归并排序模版
* @param l 左边界
* @param r 有边界
*/
public void mergeSort(int l, int r) {
if (l >= r) {
return;
}
int mid = l + r >> 1;
mergeSort(l, mid);
mergeSort(mid + 1, r);
// 这里k表示需要放置元素的下表,i表示左区间的第一个下标,j表示右区间的第一个下标
int k = 0, i = l, j = mid + 1;
while (i <= mid && j <= r) {
if (arr[i] <= arr[j]) {
tmp[k++] = arr[i++];
} else {
tmp[k++] = arr[j++];
}
}
// 处理未处理完的区间:两个while循环只会执行一个
while (i <= mid) {
tmp[k++] = arr[i++];
}
while (j <= r) {
tmp[k++] = arr[j++];
}
// 将排序好的部分覆盖回原来的arr数组
for (int q = l, w = 0; q <= r; q++, w++) {
arr[q] = tmp[w];
}
}
}
/**
* @Author LBS59
* @Description 二分搜索模板
* @Date 11:28 2022/5/31
**/
private static class BinarySearch {
private static final int N = 100010;
private int[] arr = new int[N];
private boolean check(int a, int b) {
/*
自定义比较关系
*/
return true;
}
/**
* 二分第一个模板,注意看mid的取值
* @param l 左边界
* @param r 有边界
* @param target 目标值
* @return 目标值所在下标
*/
public int binarySearch1(int l, int r, int target) {
while (l < r) {
// 看这里
int mid = l + r >> 1;
if (check(arr[mid], target)) {
// 看这里
r = mid;
} else {
l = mid + 1;
}
}
return l;
}
/**
* 二分第二个模板,注意看mid的取值
* @param l 左边界
* @param r 有边界
* @param target 目标值
* @return 目标值所在下标
*/
public int binarySearch2(int l, int r, int target) {
while (l < r) {
// 看这里
int mid = l + r + 1 >> 1;
if (check(arr[mid], target)) {
// 看这里
l = mid;
} else {
r = mid - 1;
}
}
return l;
}
}
/**
* @Author LBS59
* @Description 前缀和模板
* @Date 11:28 2022/5/31
**/
private static class PreSum {
/**
* 一维前缀和
* @param nums 原数组
* @return 前缀和数组
*/
public int[] preSum1(int[] nums) {
int n = nums.length;
int[] pre = new int[n + 1];
for (int i = 1; i <= n; i++) {
pre[i] = pre[i - 1] + nums[i - 1];
}
int[] res = new int[n];
for (int i = 1; i <= n; i++) {
res[i] = pre[i + 1];
}
return res;
}
/**
* 二维前缀和
* @param nums 原数组
*/
public int[][] preSum1(int[][] nums) {
int m = nums.length, n = nums[0].length;
int[][] pre = new int[m + 1][n + 1];
for (int i = 1; i <= m; i++) {
for (int j = 1; j <= n; j++) {
pre[i][j] += pre[i - 1][j] + pre[i][j - 1] - pre[i - 1][j - 1] + nums[i - 1][j - 1];
}
}
int[][] res = new int[m][n];
for (int i = 1; i <= m; i++) {
for (int j = 1; j <= n; j++) {
res[i][j] = pre[i - 1][j - 1];
}
}
return res;
}
}
/**
* @Author LBS59
* @Description 差分和模板:通过差分数组求前缀和数组可以得到原数组
* @Date 11:29 2022/5/31
**/
private static class DivSum {
private void insert1(int[] arr, int l, int r, int c) {
arr[l] += c;
arr[r + 1] -= c;
}
/**
* 一维差分数组
* @param nums 原数组
* @return 差分数组
*/
public int[] divSum1(int[] nums) {
int n = nums.length;
int[] div = new int[n + 1];
for (int i = 0; i < n; i++) {
insert1(div, i + 1, i + 1, nums[i]);
}
int[] res = new int[n];
for (int i = 0; i < n; i++) {
res[i] = div[i];
}
return res;
}
private void insert2(int[][] arr, int x1, int x2, int y1, int y2, int c) {
arr[x1][x2] += c;
arr[x1][y2 + 1] -= c;
arr[x2 + 1][y1] -= c;
arr[x2 + 1][y2 + 1] += c;
}
/**
* 二维差分数组
* @param nums 原数组
* @return 差分数组
*/
public int[][] divSum2(int[][] nums) {
int m = nums.length, n = nums[0].length;
int[][] div = new int[m + 1][n + 1];
for (int i = 0; i < m; i++) {
for (int j = 0; j < n; j++) {
insert2(div, i, i, j, j, nums[i][j]);
}
}
int[][] res = new int[m][n];
for (int i = 0; i < m; i++) {
for (int j = 0; j < n; j++) {
res[i][j] = div[i][j];
}
}
return res;
}
}
/**
* @Author LBS59
* @Description 二进制位运算模板
* @Date 11:29 2022/5/31
**/
private static class BitOperation {
/**
* 求整数n二进制表示中从低到高第k位是0还是1
* @param n 整数
* @param k 位数
* @return 0/1
*/
public int val(int n, int k) {
return (n >> k) & 1;
// return n & (1 << k);
}
/**
* 求整数n二进制表示中最后一位1的位置,这里用值表示,如1表示第0位,2表示第一位,以此类推
* @param n 整数
* @return 2^(位数)
*/
public int lowBit(int n) {
return n & -n;
}
}
/**
* @Author LBS59
* @Description 区间合并模板
* @Date 11:29 2022/5/31
**/
private static class MergeIntervals {
private static final int INF = Integer.MIN_VALUE;
/**
* 区间合并
* @param intervals 待合并区间
* @return 合并后的所有区间
*/
public List<int[]> mergeIntervals(int[][] intervals) {
// 按区间左端点排序
Arrays.sort(intervals, Comparator.comparingInt(o -> o[0]));
List<int[]> res = new ArrayList<>();
// 设定起始区间位置为负无穷
int st = INF, ed = INF;
for (int[] interval : intervals) {
if (st == INF && ed == INF) {
st = interval[0];
ed = interval[1];
} else {
// 当前区间左端点小于ed,说明二者之间有交集,更新右边界即可
if (interval[0] <= ed) {
ed = Math.max(ed, interval[1]);
} else {
// 无交集,产生了一个新区间
res.add(new int[] {st, ed});
st = interval[0];
ed = interval[1];
}
}
}
// 最后剩余一个单独的区间,添加到res中
if (st != INF && ed != INF) {
res.add(new int[] {st, ed});
}
return res;
}
}
/**
* @Author LBS59
* @Description 单调栈和单调队列模板
* @Date 11:37 2022/5/31
**/
private static class StackAndQueue {
/**
* 单调栈实现:这里实现的内容为寻找数组中每一个元素左边离自己最近并且比自己小的元素,不存在设为-1
* @param nums 数组
* @return 较小值数组
*/
public int[] getLeftMin(int[] nums) {
int n = nums.length;
int[] res = new int[n];
Stack<Integer> stack = new Stack<>();
for (int i = 0; i < n; i++) {
while (!stack.isEmpty() && stack.peek() >= nums[i]) {
stack.pop();
}
if (stack.isEmpty()) {
res[i] = -1;
} else {
res[i] = stack.peek();
}
stack.push(nums[i]);
}
return res;
}
/**
* 单调队列实现:这里实现的内容找出长度为k的子数组中的最小值
* @param nums 数组
* @param k 区间长度
* @return 区间最小值集合
*/
public List<Integer> getMin(int[] nums, int k) {
int n = nums.length;
List<Integer> res = new ArrayList<>();
// 队列中存储的为下标
Deque<Integer> queue = new ArrayDeque<>();
for (int i = 0; i < n; i++) {
if (!queue.isEmpty() && i - k + 1 > queue.peekFirst()) {
queue.pollFirst();
}
while (!queue.isEmpty() && nums[queue.peekLast()] >= nums[i]) {
queue.pollLast();
}
queue.offerLast(i);
if (i >= k - 1) {
res.add(nums[queue.peekFirst()]);
}
}
return res;
}
}
/**
* @Author LBS59
* @Description 字典树实现
* @Date 11:32 2022/5/31
**/
private static class Trie {
private int[][] son;
private int[] cnt;
private int idx;
public Trie(int n) {
son = new int[n][26];
cnt = new int[n];
idx = 0;
}
/**
* 将字符串s插入到字典树中
* @param s 字符串
*/
public void insert(String s) {
// 从根节点开始
int p = 0;
for (char c : s.toCharArray()) {
// 获取在当前层的下标
int u = c - 'a';
if (son[p][u] == 0) {
// 如果当前位置不存在,则创建该分支
son[p][u] = ++idx;
}
// 跳到该分支
p = son[p][u];
}
// 字符串s的个数自增
cnt[p]++;
}
/**
* 查询字典树中存在字符串s的个数
* @param s
* @return
*/
public int query(String s) {
// 从根节点开始
int p = 0;
for (char c : s.toCharArray()) {
// 获取当前层对应下标
int u = c - 'a';
if (son[p][u] == 0) {
// 如果当前分支不存在,则说明字典树中不存在当前字符串,直接返回
return 0;
}
// 跳到该分支
p = son[p][u];
}
return cnt[p];
}
}
/**
* @Author LBS59
* @Description 并查集实现
* @Date 11:43 2022/5/31
**/
private static class UnionFind {
int[] parent, size;
public UnionFind(int n) {
parent = new int[n];
size = new int[n];
for (int i = 1; i <= n; i++) {
parent[i] = i;
size[i] = 1;
}
}
public int find(int x) {
if (parent[x] != x) {
parent[x] = find(parent[x]);
}
return parent[x];
}
public void union(int a, int b) {
if (find(a) != find(b)) {
size[find(b)] += size[find(a)];
parent[find(a)] = find(b);
}
}
}
/**
* @Author LBS59
* @Description 自定义堆
* @Date 11:53 2022/5/31
**/
private static class MyHeap {
/**
* h存储队中节点的值,ph表示从指针到堆的映射,hp表示从堆到指针的映射
*/
int[] h, ph, hp;
/**
* size表示当前队中存储节点的个数
*/
int size;
public MyHeap(int n) {
h = new int[n];
ph = new int[n];
hp = new int[n];
size = 0;
}
private void swap(int[] arr, int i, int j) {
int temp = arr[i];
arr[i] = arr[j];
arr[j] = temp;
}
public void heapSwap(int a, int b) {
swap(ph, hp[a], hp[b]);
swap(hp, a, b);
swap(h, a, b);
}
/**
* 堆向下调整操作
* @param u 待调整位置
*/
public void down(int u) {
// 使用t来记录当前位置和其左/右儿子中最小值的位置
int t = u;
// 如果存在左儿子并且左儿子更小,则较小位置更新
if (u * 2 <= size && h[u * 2] < h[t]) {
t = u * 2;
}
// 如果存在右儿子并且右儿子更小,则较小位置更新
if (u * 2 + 1 <= size && h[u * 2 + 1] < h[t]) {
t = u * 2 + 1;
}
// 如果存在儿子位置变动
if (u != t) {
// 则将最小值交换至根位置,确保堆的性质,交换后的t位置为原来根的位置,递归处理即可
heapSwap(u, t);
down(t);
}
}
/**
* 堆向上调整操作
* @param u 待调整位置
*/
public void up(int u) {
// 如果当前位置存在父节点并且父节点的值大于当前值,则交换父子节点的值,并且继续向上调整
while (u / 2 > 0 && h[u] < h[u / 2]) {
heapSwap(u / 2, u);
u /= 2;
}
}
}
/**
* @Author LBS59
* @Description 自定义哈希表
* @Date 11:43 2022/5/31
**/
private static class MyHashMap {
private static final int N = 100003;
int[] h, e, ne;
int idx;
public MyHashMap() {
h = new int[N];
Arrays.fill(h, -1);
e = new int[N];
ne = new int[N];
idx = 0;
}
public void insert(int x) {
int hash = (x % N + N) % N;
e[idx] = x;
ne[idx] = h[hash];
h[hash] = idx++;
}
public boolean find(int x) {
int hash = (x % N + N) % N;
for (int i = h[hash]; i != -1 ; i = ne[i]) {
if (e[i] == x) {
return true;
}
}
return false;
}
}
/**
* @Author LBS59
* @Description 自定义存储有向图的临街表
* @Date 11:44 2022/5/31
**/
private static class Adjacent {
private static final int N = 100010;
private static final int M = N * 2;
/**
* 散列表四件套
*/
int[] h, e, ne;
int idx;
/**
* 判重
*/
private final boolean[] vis;
/**
* bfs可以计算0-1图的最短路径
*/
private final int[] dis;
/**
* 拓扑排序
*/
int n;
int cnt;
int[] res;
public Adjacent(int n) {
h = new int[N];
Arrays.fill(h, -1);
e = new int[M];
ne = new int[M];
idx = 0;
vis = new boolean[N];
dis = new int[N];
Arrays.fill(dis, -1);
this.n = n;
res = new int[N];
cnt = 0;
}
/**
* 添加一条a->的边
* @param a fr
* @param b to
*/
public void add(int a, int b) {
e[idx] = b;
ne[idx] = h[a];
h[a] = idx++;
}
/**
* 深度优先遍历有向图
* @param u 任意节点
*/
public void dfs(int u) {
vis[u] = true;
for (int i = h[u]; i != -1; i = ne[i]) {
int j = e[i];
if (!vis[j]) {
dfs(j);
}
}
}
/**
* 广度优先遍历有向图
*/
public void bfs() {
Queue<Integer> queue = new LinkedList<>();
queue.offer(1);
dis[1] = 0;
while (!queue.isEmpty()) {
int t = queue.poll();
for (int i = h[t]; i != -1; i = ne[i]) {
int j = e[i];
if (dis[j] == -1) {
dis[j] = dis[t] + 1;
queue.offer(j);
}
}
}
}
/**
* 判断一个有向图是否存在拓扑序列
* @return true表示存在,false表示不存在
*/
public boolean topSort() {
Queue<Integer> queue = new LinkedList<>();
for (int i = 1; i <= n; i++) {
if (dis[i] == 0) {
queue.offer(i);
res[cnt++] = i;
}
}
while (!queue.isEmpty()) {
int t = queue.poll();
for (int i = h[t]; i != -1; i = ne[i]) {
int j = e[i];
dis[j]--;
if (dis[j] == 0) {
queue.offer(j);
res[cnt++] = j;
}
}
}
return cnt == n;
}
}
/**
* @Author LBS59
* @Description dijkstra最短路径算法-朴素版+堆优化版
* @Date 11:44 2022/5/31
**/
private static class Dijkstra {
private static final int N = 510, INF = 0x3f3f3f3f;
/**
* 稠密图:邻接矩阵存储每一条边的边权
*/
private static int[][] g;
/**
* 稀疏图:邻接表存储每一条边的边权
*/
private static int[] h, e, ne, w;
private static int idx;
private static int[] dist;
private static boolean[] vis;
public Dijkstra() {
// 稠密图
g = new int[N][N];
for (int i = 0; i < N; i++) {
Arrays.fill(g[i], INF);
}
// 稀疏图
h = new int[N];
Arrays.fill(h, -1);
e = new int[N];
ne = new int[N];
w = new int[N];
idx = 0;
dist = new int[N];
Arrays.fill(dist, INF);
vis = new boolean[N];
}
/**
* 求节点1到节点n的最短路径
* @param n 终点节点
* @return 最短路径值
*/
public int dijkstra1(int n) {
dist[1] = 0;
for (int i = 0; i < n; i++) {
int t = -1;
for (int j = 1; j <= n; j++) {
if (!vis[j] && (t == -1 || dist[t] > dist[j])) {
t = j;
}
}
if (t == n) {
break;
}
vis[t] = true;
for (int j = 1; j <= n; j++) {
dist[j] = Math.min(dist[j], dist[t] + g[t][j]);
}
}
if (dist[n] == INF) {
// 从1到不了n
return -1;
}
return dist[n];
}
/**
* 添加一条a->b,权重为c的有向边
* @param a 1
* @param b 2
* @param c 3
*/
private void add(int a, int b, int c) {
e[idx] = b;
w[idx] = c;
ne[idx] = h[a];
h[a] = idx++;
}
public int dijkstra2(int n) {
dist[1] = 0;
// 堆存储一个长度为2的数组,{距离节点1的距离,当前节点编号}
PriorityQueue<int[]> pq = new PriorityQueue<>(Comparator.comparingInt(o -> o[0]));
pq.offer(new int[] {0, 1});
while (!pq.isEmpty()) {
int[] cur = pq.poll();
int dis = cur[0], ver = cur[1];
if (vis[ver]) {
continue;
}
if (ver == n) {
break;
}
vis[ver] = true;
for (int i = h[ver]; i != -1; i = ne[i]) {
int j = e[i];
if (dist[j] > dis + w[i]) {
dist[j] = dis = w[i];
pq.offer(new int[] {dist[j], j});
}
}
}
if (dist[n] == INF) {
return -1;
}
return dist[n];
}
}
/**
* @Author LBS59
* @Description Bellman-Ford最短路径算法:处理含负权边的有向图最短路径问题
* @Date 12:05 2022/5/31
**/
private static class BellmanFord {
/**
* 创建边权类
*/
private static class Edge {
int from;
int to;
int weight;
public Edge(int a, int b, int w) {
this.from = a;
this.to = b;
this.weight = w;
}
}
private static final int N = 510, M = 10010, INF = 0x3f3f3f3f;
/**
* dist存储所有节点到节点1的最短距离
*/
private int[] dist;
/**
* backup存储上次更新的结果
*/
private int[] backup;
/**
* edges存储所有边的信息
*/
private Edge[] edges;
public BellmanFord() {
dist = new int[N];
Arrays.fill(dist, INF);
backup = new int[N];
edges = new Edge[M];
}
/**
* 创建一条边权信息
* @param a from
* @param b to
* @param w weight
* @return Edge对象
*/
private Edge insert(int a, int b, int w) {
return new Edge(a, b, w);
}
public int bellmanFord(int n, int k, int m) {
dist[1] = 0;
for (int i = 0; i < k; i++) {
backup = Arrays.copyOf(dist, dist.length);
for (int j = 0; j < m; j++) {
int a = edges[j].from, b = edges[j].to, w = edges[j].weight;
dist[b] = Math.min(dist[b], backup[a] + w);
}
}
return dist[n];
}
}
/**
* @Author LBS59
* @Description SPFA最短路径算法:一种更高效的处理含负权边的最短路径问题
* @Date 12:06 2022/5/31
**/
private static class SPFA {
private static final int N = 100010, INF = 0x3f3f3f3f;
private int[] h, e, ne, w;
private int[] dist;
private boolean[] vis;
private int idx;
public SPFA() {
h = new int[N];
Arrays.fill(h, -1);
e = new int[N];
ne = new int[N];
w = new int[N];
dist = new int[N];
Arrays.fill(dist, INF);
vis = new boolean[N];
idx = 0;
}
private void add(int a, int b, int c) {
e[idx] = b;
w[idx] = c;
ne[idx] = h[a];
h[a] = idx++;
}
public int spfa(int n) {
Queue<Integer> queue = new ArrayDeque<>();
dist[1] = 0;
vis[1] = true;
queue.offer(1);
while (!queue.isEmpty()) {
int t = queue.poll();
vis[t] = false;
for (int i = h[t]; i != -1; i = ne[i]) {
int j = e[i];
if (dist[j] > dist[t] + w[i]) {
dist[j] = dist[t] + w[i];
if (!vis[j]) {
queue.offer(j);
vis[j] = true;
}
}
}
}
return dist[n];
}
}
/**
* @Author LBS59
* @Description floyd最短路径算法:解决多源最短路问题
* @Date 12:12 2022/5/31
**/
private static class Floyd {
private static final int N = 210, INF = 0x3f3f3f3f;
private int[][] dist;
public Floyd() {
dist = new int[N][N];
for (int i = 0; i < N; i++) {
Arrays.fill(dist[i], INF);
}
}
public void floyd(int n) {
for (int k = 1; k <= n; k++) {
for (int i = 1; i <= n; i++) {
for (int j = 1; j <= n; j++) {
dist[i][j] = Math.min(dist[i][j], dist[i][k] + dist[k][j]);