-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathalgoII_week3_1.html
1079 lines (1004 loc) · 68.8 KB
/
algoII_week3_1.html
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
<!DOCTYPE html>
<html lang="zh-Hant"
>
<head>
<title>[Algorithms II] Week 3-1 Maximum Flow - mx's blog</title>
<!-- Using the latest rendering mode for IE -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="theme-color" content="#6b5594">
<meta name="msapplication-navbutton-color" content="#6b5594">
<meta name="apple-mobile-web-app-status-bar-style" content="#6b5594">
<link rel="manifest" href="/manifest.json">
<link rel="canonical" href="https://x-wei.github.io/algoII_week3_1.html">
<meta name="author" content="mx" />
<meta name="keywords" content="algorithm" />
<meta name="description" content="1. Introduction to Maxflow Min-cut pb input: edge-weighted digraph G, each edge e has weight("capacity") c[e]>=0, a source vertex s, a target vertex t. def. an st-cut (A,B) is a partition of vertices into 2 disjoint sets A and B, with s in set A and ..." />
<meta property="og:site_name" content="mx's blog" />
<meta property="og:type" content="article"/>
<meta property="og:title" content="[Algorithms II] Week 3-1 Maximum Flow"/>
<meta property="og:url" content="https://x-wei.github.io/algoII_week3_1.html"/>
<meta property="og:description" content="1. Introduction to Maxflow Min-cut pb input: edge-weighted digraph G, each edge e has weight("capacity") c[e]>=0, a source vertex s, a target vertex t. def. an st-cut (A,B) is a partition of vertices into 2 disjoint sets A and B, with s in set A and ..."/>
<meta property="article:published_time" content="2015-11-17" />
<meta property="article:section" content="notes" />
<meta property="article:tag" content="algorithm" />
<meta property="article:author" content="mx" />
<meta property="og:image"
content="https://x-wei.github.io/algoII_week3_1.png"/>
<!-- Bootstrap -->
<link href="https://x-wei.github.io/theme/css/bootstrap.min.css" rel="stylesheet">
<link href="https://x-wei.github.io/theme/css/font-awesome.min.css" rel="stylesheet">
<link href="https://x-wei.github.io/theme/css/pygments/manni.css" rel="stylesheet">
<link href="https://x-wei.github.io/theme/tipuesearch/tipuesearch.css" rel="stylesheet">
<link rel="stylesheet" href="https://x-wei.github.io/theme/css/style.css" type="text/css"/>
<link href="https://x-wei.github.io/feeds/atom.xml" type="application/atom+xml" rel="alternate"
title="mx's blog ATOM Feed"/>
<link href="https://x-wei.github.io/theme/css/material.min.css" rel="stylesheet">
<link href="https://x-wei.github.io/theme/css/ripples.css" rel="stylesheet">
</head>
<body>
<div style="display:none" id="title">[Algorithms II] Week 3-1 Maximum Flow - mx's blog</div>
<div class="navbar navbar-default navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-ex1-collapse">
<span class="sr-only">切换导航</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a href="https://x-wei.github.io/" class="navbar-brand">
mx's blog </a>
</div>
<div class="collapse navbar-collapse navbar-ex1-collapse">
<ul class="nav navbar-nav">
<li class="dropdown hidden-md hidden-lg hidden-xl">
<a class="dropdown-toggle" data-toggle="dropdown" href="javascript:void(0)">
<i class="fa fa-user"></i><span class="caret"></span>
</a>
<ul class="dropdown-menu">
</ul>
</li>
<ul class="nav navbar-nav hidden-xs hidden-sm">
</ul>
</ul>
<ul class="nav navbar-nav hidden-md hidden-lg hidden-xl">
<li class="dropdown hidden-md hidden-lg hidden-xl">
<a class="dropdown-toggle" data-toggle="dropdown" href="javascript:void(0)">
<i class="fa fa-folder-o"></i><span class="caret"></span>
</a>
<ul class="dropdown-menu">
<li >
<a href="https://x-wei.github.io/category/misc.html"><i class="fa fa-folder-o"></i> Misc</a>
</li>
<li >
<a href="https://x-wei.github.io/category/music.html"><i class="fa fa-folder-o"></i> Music</a>
</li>
<li class="active">
<a href="https://x-wei.github.io/category/notes.html"><i class="fa fa-folder-o"></i> Notes</a>
</li>
<li >
<a href="https://x-wei.github.io/category/soft.html"><i class="fa fa-folder-o"></i> Soft</a>
</li>
<li >
<a href="https://x-wei.github.io/category/tech.html"><i class="fa fa-folder-o"></i> Tech</a>
</li>
</ul>
</li>
</ul>
<ul class="nav navbar-nav hidden-xs hidden-sm">
<li >
<a href="https://x-wei.github.io/category/misc.html"><i class="fa fa-folder-o"></i> Misc</a>
</li>
<li >
<a href="https://x-wei.github.io/category/music.html"><i class="fa fa-folder-o"></i> Music</a>
</li>
<li class="active">
<a href="https://x-wei.github.io/category/notes.html"><i class="fa fa-folder-o"></i> Notes</a>
</li>
<li >
<a href="https://x-wei.github.io/category/soft.html"><i class="fa fa-folder-o"></i> Soft</a>
</li>
<li >
<a href="https://x-wei.github.io/category/tech.html"><i class="fa fa-folder-o"></i> Tech</a>
</li>
</ul>
<ul class="nav navbar-nav navbar-right hidden-sm hidden-md hidden-lg hidden-xl">
<li class="dropdown hidden-md hidden-lg hidden-xl">
<a class="dropdown-toggle" data-toggle="dropdown" href="javascript:void(0)">
<i class="fa fa-search"></i><span class="caret"></span>
</a>
<ul class="dropdown-menu">
<li><span>
<form class="navbar-search" action="/search.html">
<input type="text" class="search-query form-control col-lg-16" placeholder="Search" name="q" id="tipue_search_input" required>
</form></span>
</li>
</ul>
</li>
</ul>
<ul class="nav navbar-right navbar-form hidden-xs">
<li><span>
<form class="navbar-search" action="/search.html">
<input type="text" class="search-query form-control col-lg-16" placeholder="查找" name="q" id="tipue_search_input" required>
</form></span>
</li>
</ul>
<ul class="nav navbar-nav navbar-right hidden-xs">
<li><a href="https://x-wei.github.io/archives.html"><i class="fa fa-th-list"></i><span class="icon-label">Archive</span></a></li>
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
</div> <!-- /.navbar -->
<!-- Banner -->
<!-- End Banner -->
<div class="container" style="min-height: 100%;height: auto !important;height: 100%;">
<div class="row" style="padding-bottom:80px;padding-top:80px;">
<div class="col-xl-21 col-lg-20 col-md-18">
<div id="loading-block">
<ol class="breadcrumb">
<li><a href="https://x-wei.github.io/" title="mx's blog"><i class="fa fa-home fa-lg"></i></a></li>
<li><a href="https://x-wei.github.io/category/notes.html" title="notes">notes</a></li>
<li class="active">[Algorithms II] Week 3-1 Maximum Flow</li>
</ol>
<section id="content" class="article-content">
<article>
<header class="page-header jumbotron jumbotron-primary panel-primary" id="article-header">
<div class="panel-heading">
<h1>
[Algorithms II] Week 3-1 Maximum Flow
<a href="https://x-wei.github.io/algoII_week3_1.html"
rel="bookmark"
class="btn btn-primary btn-lg"
title="到 [Algorithms II] Week 3-1 Maximum Flow 的永久链接">
<i class="mdi-action-launch"></i>
</a>
</h1>
</div>
<div class="panel-body">
<div class="post-info">
<span class="published">
<time datetime="2015-11-17T00:00:00+01:00"><i class="fa fa-calendar"></i> Tue, 17 Nov 2015</time>
</span>
<span class="btn-group">
<a href="https://x-wei.github.io/tag/algorithm.html" class="btn btn-primary btn-xs"><i class="fa fa-tag"></i> algorithm</a>
</span>
<span class="label label-default">Series</span>
Part 5 of «Algorithms Princeton MOOC II»
</div><!-- /.post-info --> </div>
</header>
<div class="entry-content jumbotron" id="article-content">
<div class="panel panel-default">
<div class="panel-heading">
目录
</div>
<div class="panel-boy">
<div id="toc"><ul><li><a class="toc-href" href="#1-introduction-to-maxflow" title="1. Introduction to Maxflow">1. Introduction to Maxflow</a><ul><li><a class="toc-href" href="#min-cut-pb" title="Min-cut pb">Min-cut pb</a></li><li><a class="toc-href" href="#max-flow-pb" title="Max-flow pb">Max-flow pb</a></li></ul></li><li><a class="toc-href" href="#2-ford-fulkerson-algorithm_1" title="2. Ford-Fulkerson Algorithm">2. Ford-Fulkerson Algorithm</a></li><li><a class="toc-href" href="#3-maxflow-mincut-theorem" title="3. Maxflow-Mincut Theorem">3. Maxflow-Mincut Theorem</a></li><li><a class="toc-href" href="#4-running-time-analysis" title="4. Running Time Analysis">4. Running Time Analysis</a><ul><li><a class="toc-href" href="#integer-capacity-graphs" title="integer capacity graphs">integer capacity graphs</a></li><li><a class="toc-href" href="#bad-case-for-ff" title="Bad case for FF">Bad case for FF</a></li></ul></li><li><a class="toc-href" href="#5-java-implementation_1" title="5. Java Implementation">5. Java Implementation</a><ul><li><a class="toc-href" href="#representation-of-flow-graph" title="representation of flow graph">representation of flow graph</a></li><li><a class="toc-href" href="#residual-graph-gr" title="Residual graph Gr">Residual graph Gr</a></li><li><a class="toc-href" href="#apis" title="APIs">APIs</a></li></ul></li><li><a class="toc-href" href="#6-maxflow-applications_1" title="6. Maxflow Applications">6. Maxflow Applications</a><ul><li><a class="toc-href" href="#ex1-bipartite-matching-pb" title="ex1. bipartite matching pb">ex1. bipartite matching pb</a></li><li><a class="toc-href" href="#ex2-baseball-elimination" title="ex2. baseball elimination">ex2. baseball elimination</a></li></ul></li></ul></div>
</div>
</div>
<h1 id="1-introduction-to-maxflow">1. Introduction to Maxflow</h1>
<h3 id="min-cut-pb">Min-cut pb</h3>
<ul>
<li>input: edge-weighted digraph G, each edge <code>e</code> has weight(<em>"capacity"</em>) <code>c[e]</code>>=0, a <em>source vertex</em> <code>s</code>, a <em>target vertex</em> <code>t</code>. </li>
<li><strong>def</strong>. an <strong>st-cut </strong><code>(A,B)</code> is a partition of vertices into 2 disjoint sets A and B, with <code>s</code> in set <code>A</code> and <code>t</code> in set <code>B</code>. </li>
<li><strong>def</strong>. the <strong>capacity</strong> of a cut <code>(A,B)</code> is sum of capacities of edges going <em>from A to B</em> <em>(not considering B to A)</em>. </li>
</ul>
<p><img alt="" class="img-responsive" src="../images/algoII_week3_1/pasted_image.png"/> <br/>
⇒ min-cut pb: find the cut <strong>(A,B)</strong> with min-capacity. </p>
<h3 id="max-flow-pb">Max-flow pb</h3>
<ul>
<li>same input: graph G, source s, target t </li>
<li><strong>def.</strong> an <strong>st-flow</strong> is an assignment of values to edges <code>f: e→f[e]</code> such that: <ul>
<li>capacity constraint: <code>0<=f[e]<=c[e]</code> for any e; </li>
<li>local equilibrium: for any vertex v (other than s or t), <em>inflow=outflow</em>; </li>
</ul>
</li>
<li><strong>def.</strong> the <strong>value</strong> of a flow <code>f</code> is the inflow at <code>t</code>. (assume no ingoing edge to s or outgoing edge to t) </li>
</ul>
<p><img alt="" class="img-responsive" src="../images/algoII_week3_1/pasted_image001.png"/> <br/>
⇒ max-flow pb: find <code>f</code> with max value. </p>
<p>remark: max-flow and min-cut are dual problems. </p>
<h1 id="2-ford-fulkerson-algorithm_1">2. Ford-Fulkerson Algorithm</h1>
<p><strong>def.</strong> given a flow <code>f</code> for a graph, an <strong>"augment path"</strong> is an <strong>undirected</strong> path form <code>s</code> to <code>t</code>, if there exist <code>df>0</code> (<em>"bottleneck capacity"</em>) such that: </p>
<ul>
<li>for forward edges e: can augment flow by <code>df</code> (not full: <code>f[e]+df<=c[e]</code>) </li>
<li>for backward edges: can decrease flow by <code>df</code> (not empty: <code>f[e]-df>=0</code>) </li>
</ul>
<p><img alt="" class="img-responsive" src="../images/algoII_week3_1/pasted_image002.png"/> </p>
<ul>
<li>def. <strong>residual capacity</strong> <ul>
<li>for forward edge e, <em>residual-cap = c[e]-f[e]</em> </li>
<li>for backward edge e, <em>residual-cap = f[e]</em> </li>
</ul>
</li>
</ul>
<p>⇒ an aug-path is a path where <em>each edge has residual capacity >0</em>. </p>
<p><strong>blocking edges</strong>: <em>full forward edge</em> or <em>empty backward edge.</em> </p>
<p>→ idea: increase flow along augment paths. <br/>
<strong>[algo]</strong> </p>
<blockquote>
<ul>
<li>start: 0 flow: <code>f[e]=0</code> for all e. </li>
<li>find an augment path (and the corresponding <code>df</code>) in graph, and change the flows along the path by <code>+/-df</code>. </li>
<li>loop until no augment path exists. (ie. all path s→t are blocked either by a <em>full forward edge</em> or an <em>empty backward edge, </em>ie. by an edge with 0 residual capacity) </li>
</ul>
</blockquote>
<p><img alt="" class="img-responsive" src="../images/algoII_week3_1/pasted_image003.png"/> </p>
<p>FF is a gernel algorithm: <br/>
<img alt="" class="img-responsive" src="../images/algoII_week3_1/pasted_image004.png"/> </p>
<h1 id="3-maxflow-mincut-theorem">3. Maxflow-Mincut Theorem</h1>
<p><strong>def</strong>. for a cut (A,B), the <strong>net flow</strong> across the cut (<em>netflow(A,B)</em>) is the sum of flows from A to B minus flows from B to A. </p>
<blockquote>
<p><strong>[flow-value Lemma]</strong> <br/>
For any flow <code>f</code> and any cut <code>(A,B)</code>⇒ <em>netflow(A,B) = value(f).</em> <br/>
<em>pf.</em> <br/>
induction on the size of set B. <br/>
<em> base case, when B={t}, by def we have </em>netflow(A,B) = value(f)<em> <br/>
</em> when moving any vertex v from A to B: <br/>
* netflow(A, B) augment by <em>flow(A→v)+flow(B→v)=inflow(v)</em>, <br/>
* netflow(A, B) decrease by <em>flow(v→A)+flow(v→B)=outflow(v)</em>, <br/>
* by equilibrium of flow, <em>netflow(A',B')=netflow(A,B)=value(f)</em> </p>
</blockquote>
<p>ex. (A: gray vertices, B: white vertices) <br/>
<img alt="" class="img-responsive" src="../images/algoII_week3_1/pasted_image005.png"/> </p>
<p>[cor] <em>outflow(s)=inflow(t)=value(f)</em> </p>
<blockquote>
<p><strong>[weak duality]</strong> <br/>
For <em>any</em> flow <code>f</code> and <em>any</em> cut <code>(A,B)</code>, ⇒ <em>value(f) <= capacity(A,B).</em> </p>
<p><strong>[Augmenting path Th]</strong> <br/>
A flow <code>f</code> is maxflow <em>iff</em> there is no augment path. </p>
<p><strong>[maxflow-mincut Th]</strong> <br/>
<strong>value(maxflow) = capacity(mincut).</strong> </p>
</blockquote>
<p><em>pf.</em> <br/>
for any flow <code>f</code>, prove the equivalence of the 3 following statements: <br/>
i. there exists a cut st: <em>capacity(cut) = value(f).</em> <br/>
ii. <code>f</code> is a maxflow. <br/>
iii. there is no augmenting path wrt <code>f</code>. </p>
<ul>
<li>[i⇒ii] </li>
</ul>
<p>suppose cut(A,B) st: <em>capacity(A,B)=value(f)</em> <br/>
⇒ by weak duality, for any other flow f', <em>vlaue(f')<=capacity(A,B)=value(f)</em> </p>
<ul>
<li>[ii⇒iii] (eqv to prove ~iii⇒~ii) </li>
</ul>
<p>suppose there is an aug-path from s to t, of bottleneck capacity=df, <br/>
⇒ by improving f with df, we get a f' > f </p>
<ul>
<li>[iii⇒i] </li>
</ul>
<p>suppose there is no aug-path, ie, <em>all path from s to t are blocked by some full-forward edge or empty backward edge.</em> <br/>
⇒ let A:=vertices connected with s by a path with no blocking edges, and B := the rest <br/>
(<em>so</em> <em>once we get a maxflow, we can <strong><em>compute the mincut</em></strong> in this way</em>) <br/>
<img alt="" class="img-responsive" src="../images/algoII_week3_1/pasted_image006.png"/> <br/>
→ for all edges across A and B, all forward edges are full, all backward edges are empty <br/>
⇒ capacity(A,B) = netflow(A,B) = value(f) by flow-value lemma <br/>
CQFD... 过瘾... </p>
<h1 id="4-running-time-analysis">4. Running Time Analysis</h1>
<p><img alt="" class="img-responsive" src="../images/algoII_week3_1/pasted_image007.png"/> </p>
<ul>
<li>getting a mincut form maxflow? → easy (as discussed in the pf above) </li>
<li>computing an aug-path? → <strong>BFS</strong> </li>
<li>does FF algo always terminate? how many augmentations? → ... </li>
</ul>
<h3 id="integer-capacity-graphs">integer capacity graphs</h3>
<p><em>special case of FF algo</em>: edge capacities are <em>integers</em> between 1 and U. </p>
<p>invariant: flow is always integer all along FF algo. </p>
<p>[prop] nb of augmentations <= value of maxflow. <br/>
pf. each augmentation will add flow by >=1. </p>
<p>[integrality Th] There exist an integer-valued maxflow. </p>
<h3 id="bad-case-for-ff">Bad case for FF</h3>
<p>nb of augmentation == value of maxflow <br/>
(each time, the path through the middle edge is chosen as aug-path) <br/>
<img alt="" class="img-responsive" src="../images/algoII_week3_1/pasted_image008.png"/> <br/>
<strong>can be easily avoided</strong>⇒ by using shortest(nb of edges)/fastest(biggest df) path <br/>
<img alt="" class="img-responsive" src="../images/algoII_week3_1/pasted_image010.png"/> </p>
<p>Performance of FF depends on the algo for choosing aug-path: <br/>
<img alt="" class="img-responsive" src="../images/algoII_week3_1/pasted_image009.png"/> </p>
<h1 id="5-java-implementation_1">5. Java Implementation</h1>
<h3 id="representation-of-flow-graph">representation of flow graph</h3>
<ul>
<li>flow edge: </li>
</ul>
<p>each e= v→w, have flow f[e] and capacity c[e]. </p>
<ul>
<li>flow graph: </li>
</ul>
<p>put e in both v and w's adj-list. </p>
<ul>
<li>flow augmentation (by delta) <ul>
<li>for forward edge e, f[e] += delta </li>
<li>for backward edge e, f[e] -= delta </li>
</ul>
</li>
</ul>
<h3 id="residual-graph-gr">Residual graph Gr</h3>
<p><strong>def</strong>. For a flow <code>f</code> and a graph <code>G</code>, the <strong>residual graph</strong> <code>Gr</code> is obtained by: </p>
<blockquote>
<p>for each edge <code>e=v→w</code>, (with <code>c[e]</code> and <code>f[e]</code>) in <code>G</code>, put in <code>Gr</code>: <br/>
<em> <code>e1=v→w</code>, with weight=<code>c[e]-f[e]</code> <br/>
</em> <code>e2=w→v</code>, with weight=<code>f[e]</code> (即两个方向上的weight都为residual capacity) </p>
</blockquote>
<p>(rmq: <code>Gr</code> is just a weighted digraph, not a flow graph) </p>
<p>[prop] <strong>Augment path in </strong><code>G</code><strong> is equivalent to a path in </strong><code>Gr</code> (<code>df</code> of aug-path in <code>G</code> = min edge weight in <code>Gr</code>)<strong>.</strong> <br/>
(但是实现的时候其实不用显式构造Gr, 只需BFS的时候修改一下即可) <br/>
<img alt="" class="img-responsive" src="../images/algoII_week3_1/pasted_image011.png"/> </p>
<h3 id="apis">APIs</h3>
<p>这里的API设计的非常合理... 导致每一部分的代码量都不大... NB </p>
<ul>
<li>
<p>flow-edge: <br/>
rmq. both calculate residual-cap and augmentation need to specify a <em>direction</em>, so we need a index v as parameter for these 2 functions. </p>
<div class="highlight"><pre><span class="code-line"><span></span><span class="err">public class FlowEdge{ </span></span>
<span class="code-line"><span class="err"> private final int v, w; </span></span>
<span class="code-line"><span class="err"> private final double capacity; </span></span>
<span class="code-line"><span class="err"> private double flow=0.0; </span></span>
<span class="code-line"><span class="err"> FlowEdge(int v, int w, double cap); </span></span>
<span class="code-line"><span class="err"> int from(); </span></span>
<span class="code-line"><span class="err"> int to(); </span></span>
<span class="code-line"><span class="err"> int other(int v); </span></span>
<span class="code-line"><span class="err"> double capacity(); </span></span>
<span class="code-line"><span class="err"> double flow(); </span></span>
<span class="code-line"><span class="err"> double residualCapTo(int v);// residual capacity </span></span>
<span class="code-line"><span class="err"> void addFlowTo(int v, double delta);// augment residual flow </span></span>
<span class="code-line"><span class="err">}</span></span>
</pre></div>
</li>
<li>
<p>flow graph: </p>
<div class="highlight"><pre><span class="code-line"><span></span><span class="err">public class FlowNetwork{ </span></span>
<span class="code-line"><span class="err"> private Bag<FlowEdge>[] adj;//use adj-list representation for flow graph </span></span>
<span class="code-line"><span class="err"> FlowNetwork(int V); </span></span>
<span class="code-line"><span class="err"> void addEdge(FlowEdge e); </span></span>
<span class="code-line"><span class="err"> Iterable<FlowEdge> adj(int v);// both incoming and outgoing edges </span></span>
<span class="code-line"><span class="err"> ... </span></span>
<span class="code-line"><span class="err">}</span></span>
</pre></div>
</li>
<li>
<p>FF algo: </p>
<ul>
<li>use a function <code>hasAugPath()</code> to test termination </li>
<li>use a function <code>bottleNeck()</code> to get delta </li>
<li>if a augpath is found, use two arrays <code>reached[]</code> and <code>edgeTo[]</code> to get the augpath (find the path <em>backwards</em>). </li>
</ul>
</li>
</ul>
<p>code: </p>
<div class="highlight"><pre><span class="code-line"><span></span><span class="k">public</span><span class="w"> </span><span class="k">class</span><span class="w"> </span><span class="n">FordFulkerson</span><span class="err">{</span><span class="w"> </span></span>
<span class="code-line"><span class="n">private</span><span class="w"> </span><span class="k">boolean</span><span class="err">[]</span><span class="w"> </span><span class="n">reached</span><span class="p">;</span><span class="w"> </span><span class="o">//</span><span class="n">reached</span><span class="o">[</span><span class="n">v</span><span class="o">]</span><span class="w"> </span><span class="n">indicates</span><span class="w"> </span><span class="k">if</span><span class="w"> </span><span class="n">a</span><span class="w"> </span><span class="k">path</span><span class="w"> </span><span class="n">s</span><span class="c1">-->v exists in Gr, used in DFS </span></span>
<span class="code-line"><span class="n">private</span><span class="w"> </span><span class="n">FlowEdge</span><span class="err">[]</span><span class="w"> </span><span class="n">edgeTo</span><span class="p">;</span><span class="o">//</span><span class="w"> </span><span class="n">edgeTo</span><span class="o">[</span><span class="n">v</span><span class="o">]</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="k">last</span><span class="w"> </span><span class="n">edge</span><span class="w"> </span><span class="k">on</span><span class="w"> </span><span class="n">the</span><span class="w"> </span><span class="k">path</span><span class="w"> </span><span class="n">s</span><span class="c1">-->v </span></span>
<span class="code-line"><span class="n">private</span><span class="w"> </span><span class="k">double</span><span class="w"> </span><span class="k">value</span><span class="o">=</span><span class="mf">0.0</span><span class="p">;</span><span class="o">//</span><span class="w"> </span><span class="k">value</span><span class="w"> </span><span class="k">of</span><span class="w"> </span><span class="n">flow</span><span class="w"> </span></span>
<span class="code-line"><span class="k">public</span><span class="w"> </span><span class="n">FordFulkerson</span><span class="p">(</span><span class="n">FlowNetwork</span><span class="w"> </span><span class="n">G</span><span class="p">,</span><span class="w"> </span><span class="nc">int</span><span class="w"> </span><span class="n">s</span><span class="p">,</span><span class="w"> </span><span class="nc">int</span><span class="w"> </span><span class="n">t</span><span class="p">)</span><span class="err">{</span><span class="w"> </span></span>
<span class="code-line"><span class="w"> </span><span class="k">while</span><span class="p">(</span><span class="n">this</span><span class="p">.</span><span class="n">hasAugPath</span><span class="p">(</span><span class="n">G</span><span class="p">,</span><span class="n">s</span><span class="p">,</span><span class="n">t</span><span class="p">))</span><span class="err">{</span><span class="w"> </span></span>
<span class="code-line"><span class="w"> </span><span class="k">double</span><span class="w"> </span><span class="n">delta</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="n">this</span><span class="p">.</span><span class="n">bottleNeck</span><span class="p">();</span><span class="w"> </span></span>
<span class="code-line"><span class="w"> </span><span class="k">for</span><span class="p">(</span><span class="nc">int</span><span class="w"> </span><span class="n">v</span><span class="o">=</span><span class="n">t</span><span class="p">;</span><span class="w"> </span><span class="n">v</span><span class="o">!=</span><span class="n">s</span><span class="p">;</span><span class="w"> </span><span class="n">v</span><span class="o">=</span><span class="n">edgeTo</span><span class="o">[</span><span class="n">v</span><span class="o">]</span><span class="p">.</span><span class="n">other</span><span class="p">(</span><span class="n">v</span><span class="p">))</span><span class="w"> </span></span>
<span class="code-line"><span class="w"> </span><span class="n">edgeTo</span><span class="o">[</span><span class="n">v</span><span class="o">]</span><span class="p">.</span><span class="n">addFlowTo</span><span class="p">(</span><span class="n">v</span><span class="p">,</span><span class="w"> </span><span class="n">delta</span><span class="p">);</span><span class="w"> </span></span>
<span class="code-line"><span class="w"> </span><span class="n">this</span><span class="p">.</span><span class="k">value</span><span class="w"> </span><span class="o">+=</span><span class="w"> </span><span class="n">delta</span><span class="p">;</span><span class="o">//</span><span class="w"> </span><span class="k">each</span><span class="w"> </span><span class="nc">time</span><span class="w"> </span><span class="n">the</span><span class="w"> </span><span class="n">flow</span><span class="w"> </span><span class="k">value</span><span class="w"> </span><span class="n">augments</span><span class="w"> </span><span class="k">by</span><span class="w"> </span><span class="n">delta</span><span class="w"> </span></span>
<span class="code-line"><span class="w"> </span><span class="err">}</span><span class="w"> </span></span>
<span class="code-line"><span class="err">}</span><span class="w"> </span></span>
<span class="code-line"><span class="n">private</span><span class="w"> </span><span class="k">double</span><span class="w"> </span><span class="n">bottleNeck</span><span class="p">()</span><span class="err">{</span><span class="o">//</span><span class="n">bottleneck</span><span class="o">-</span><span class="n">cap</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="nf">min</span><span class="w"> </span><span class="n">residual</span><span class="w"> </span><span class="n">flow</span><span class="w"> </span><span class="k">on</span><span class="w"> </span><span class="n">the</span><span class="w"> </span><span class="n">aut</span><span class="o">-</span><span class="k">path</span><span class="w"> </span></span>
<span class="code-line"><span class="w"> </span><span class="k">double</span><span class="w"> </span><span class="n">bottleneck</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="mi">9999999</span><span class="p">;</span><span class="w"> </span></span>
<span class="code-line"><span class="w"> </span><span class="n">assert</span><span class="p">(</span><span class="n">reached</span><span class="o">[</span><span class="n">t</span><span class="o">]</span><span class="p">);</span><span class="o">//</span><span class="w"> </span><span class="n">the</span><span class="w"> </span><span class="n">aug</span><span class="o">-</span><span class="k">path</span><span class="w"> </span><span class="n">should</span><span class="w"> </span><span class="n">exsit</span><span class="w"> </span></span>
<span class="code-line"><span class="w"> </span><span class="k">for</span><span class="p">(</span><span class="nc">int</span><span class="w"> </span><span class="n">v</span><span class="o">=</span><span class="n">t</span><span class="p">;</span><span class="w"> </span><span class="n">v</span><span class="o">!=</span><span class="n">s</span><span class="p">;</span><span class="w"> </span><span class="n">v</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="n">edgeTo</span><span class="o">[</span><span class="n">v</span><span class="o">]</span><span class="p">.</span><span class="n">other</span><span class="p">(</span><span class="n">v</span><span class="p">))</span><span class="w"> </span></span>
<span class="code-line"><span class="w"> </span><span class="n">bottleneck</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="n">Math</span><span class="p">.</span><span class="nf">min</span><span class="p">(</span><span class="n">bottleneck</span><span class="p">,</span><span class="w"> </span><span class="n">edgeTo</span><span class="o">[</span><span class="n">v</span><span class="o">]</span><span class="p">.);</span><span class="w"> </span></span>
<span class="code-line"><span class="w"> </span><span class="k">return</span><span class="w"> </span><span class="n">bottleneck</span><span class="p">;</span><span class="w"> </span></span>
<span class="code-line"><span class="err">}</span><span class="w"> </span></span>
<span class="code-line"><span class="n">private</span><span class="w"> </span><span class="k">boolean</span><span class="w"> </span><span class="n">hasAugPath</span><span class="p">(</span><span class="n">FlowNetwork</span><span class="w"> </span><span class="n">G</span><span class="p">,</span><span class="w"> </span><span class="nc">int</span><span class="w"> </span><span class="n">s</span><span class="p">,</span><span class="w"> </span><span class="nc">int</span><span class="w"> </span><span class="n">t</span><span class="p">)</span><span class="err">{</span><span class="w"> </span></span>
<span class="code-line"><span class="w"> </span><span class="o">//</span><span class="w"> </span><span class="n">perform</span><span class="w"> </span><span class="n">a</span><span class="w"> </span><span class="n">BFS</span><span class="w"> </span></span>
<span class="code-line"><span class="w"> </span><span class="n">Queue</span><span class="o"><</span><span class="k">Integer</span><span class="o">></span><span class="w"> </span><span class="n">q</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="k">new</span><span class="w"> </span><span class="n">LinkedList</span><span class="o"><</span><span class="k">Integer</span><span class="o">></span><span class="p">();</span><span class="w"> </span></span>
<span class="code-line"><span class="w"> </span><span class="n">this</span><span class="p">.</span><span class="n">reached</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="k">new</span><span class="w"> </span><span class="k">boolean</span><span class="o">[</span><span class="n">G.V()</span><span class="o">]</span><span class="p">;</span><span class="w"> </span></span>
<span class="code-line"><span class="w"> </span><span class="n">this</span><span class="p">.</span><span class="n">edgeTo</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="k">new</span><span class="w"> </span><span class="n">FlowEdge</span><span class="o">[</span><span class="n">G.V()</span><span class="o">]</span><span class="p">;</span><span class="w"> </span></span>
<span class="code-line"><span class="w"> </span><span class="n">q</span><span class="p">.</span><span class="k">add</span><span class="p">(</span><span class="n">s</span><span class="p">);</span><span class="w"> </span></span>
<span class="code-line"><span class="w"> </span><span class="k">while</span><span class="p">(</span><span class="err">!</span><span class="n">q</span><span class="p">.</span><span class="n">isEmpty</span><span class="p">())</span><span class="err">{</span><span class="w"> </span></span>
<span class="code-line"><span class="w"> </span><span class="nc">int</span><span class="w"> </span><span class="n">v</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="n">q</span><span class="p">.</span><span class="n">deque</span><span class="p">();</span><span class="w"> </span></span>
<span class="code-line"><span class="w"> </span><span class="k">for</span><span class="p">(</span><span class="n">FlowEdge</span><span class="w"> </span><span class="nl">e</span><span class="p">:</span><span class="n">G</span><span class="p">.</span><span class="n">adj</span><span class="p">(</span><span class="n">v</span><span class="p">))</span><span class="err">{</span><span class="w"> </span></span>
<span class="code-line"><span class="w"> </span><span class="nc">int</span><span class="w"> </span><span class="n">w</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="n">e</span><span class="p">.</span><span class="n">other</span><span class="p">(</span><span class="n">v</span><span class="p">);</span><span class="w"> </span></span>
<span class="code-line"><span class="w"> </span><span class="k">if</span><span class="p">(</span><span class="err">!</span><span class="n">reached</span><span class="o">[</span><span class="n">w</span><span class="o">]</span><span class="w"> </span><span class="o">&&</span><span class="w"> </span><span class="n">e</span><span class="p">.</span><span class="n">residualCapTo</span><span class="p">(</span><span class="n">w</span><span class="p">)</span><span class="o">></span><span class="mi">0</span><span class="p">)</span><span class="err">{</span><span class="o">//</span><span class="w"> </span><span class="n">modified</span><span class="w"> </span><span class="nl">BFS</span><span class="p">:</span><span class="w"> </span><span class="n">valid</span><span class="w"> </span><span class="n">edges</span><span class="w"> </span><span class="k">are</span><span class="w"> </span><span class="n">those</span><span class="w"> </span><span class="k">with</span><span class="w"> </span><span class="n">residualCap</span><span class="o">></span><span class="mi">0</span><span class="w"> </span></span>
<span class="code-line"><span class="w"> </span><span class="n">edgeTo</span><span class="o">[</span><span class="n">w</span><span class="o">]</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="n">e</span><span class="p">;</span><span class="w"> </span></span>
<span class="code-line"><span class="w"> </span><span class="n">reached</span><span class="o">[</span><span class="n">w</span><span class="o">]</span><span class="w"> </span><span class="o">=</span><span class="w"> </span><span class="k">true</span><span class="p">;</span><span class="w"> </span></span>
<span class="code-line"><span class="w"> </span><span class="k">if</span><span class="p">(</span><span class="n">w</span><span class="o">==</span><span class="n">t</span><span class="p">)</span><span class="w"> </span><span class="k">return</span><span class="w"> </span><span class="k">true</span><span class="p">;</span><span class="o">//</span><span class="w"> </span><span class="n">t</span><span class="w"> </span><span class="k">is</span><span class="w"> </span><span class="n">reached</span><span class="w"> </span><span class="k">by</span><span class="w"> </span><span class="n">BFS</span><span class="w"> </span></span>
<span class="code-line"><span class="w"> </span><span class="n">q</span><span class="p">.</span><span class="n">enqueue</span><span class="p">(</span><span class="n">w</span><span class="p">);</span><span class="w"> </span></span>
<span class="code-line"><span class="w"> </span><span class="err">}</span><span class="w"> </span></span>
<span class="code-line"><span class="w"> </span><span class="err">}</span><span class="w"> </span></span>
<span class="code-line"><span class="w"> </span><span class="err">}</span><span class="o">//</span><span class="w"> </span><span class="n">BFS</span><span class="w"> </span><span class="k">while</span><span class="w"> </span><span class="n">loop</span><span class="w"> </span></span>
<span class="code-line"><span class="w"> </span><span class="k">return</span><span class="w"> </span><span class="k">false</span><span class="p">;</span><span class="w"> </span></span>
<span class="code-line"><span class="err">}</span><span class="w"> </span></span>
<span class="code-line"><span class="err">}</span><span class="o">//</span><span class="k">class</span><span class="w"> </span><span class="n">FF</span><span class="w"></span></span>
</pre></div>
<h1 id="6-maxflow-applications_1">6. Maxflow Applications</h1>
<p>关键是建模很巧妙... <br/>
<img alt="" class="img-responsive" src="../images/algoII_week3_1/pasted_image012.png"/> </p>
<h3 id="ex1-bipartite-matching-pb">ex1. bipartite matching pb</h3>
<p>二分图的最大匹配问题. (有点像marriage stable问题...但是不一样 因为没有preference order) <br/>
<img alt="" class="img-responsive" src="../images/algoII_week3_1/pasted_image013.png"/> <br/>
⇒ is there a way to match all students to a job? <br/>
ie. <em>given a bipartite graph, find a perfect matching.</em> <br/>
<img alt="" class="img-responsive" src="../images/algoII_week3_1/pasted_image014.png"/> <br/>
<strong>modeling</strong> </p>
<blockquote>
<ul>
<li>add source <code>s</code> and target <code>t</code> </li>
<li>all edges from <code>s</code> to students: capacity=1 </li>
<li>all edges from companies to <code>t</code>: capacity=1 </li>
<li>all edges from student to company: capacity=INF </li>
</ul>
</blockquote>
<p>⇒ find maxflow in the graph <br/>
<img alt="" class="img-responsive" src="../images/algoII_week3_1/pasted_image015.png"/> </p>
<p><strong>when no perfect matching: mincut can explain why</strong> <br/>
<img alt="" class="img-responsive" src="../images/algoII_week3_1/pasted_image016.png"/> <br/>
in the above case, student 2,4,5 can only be matched to 7,10 <br/>
⇒ mincut can help us find such cases! </p>
<p><em>recall: how to get mincut from maxflow</em> </p>
<blockquote>
<p>mincut = (A,B), where: <br/>
A:=vertices connected with s by a path with non blocking edges, <br/>
B := the rest <br/>
(<em>blocking edges: full forward edge or empty backward edge on path</em>) </p>
</blockquote>
<p>ex. <br/>
<img alt="" class="img-responsive" src="../images/algoII_week3_1/pasted_image017.png"/> </p>
<ul>
<li>let S=students on s side of mincut (in above case, <em>S={2,4,5}</em>) </li>
<li>let T=companies on s side of mincut (in above case, T<em>={7,10}</em>) </li>
<li>|S|>|T|, that's why no perfect matching! </li>
</ul>
<h3 id="ex2-baseball-elimination">ex2. baseball elimination</h3>
<p><img alt="" class="img-responsive" src="../images/algoII_week3_1/pasted_image018.png"/> <br/>
(前三列是目前成绩, 后面四列是接下来赛程矩阵) <br/>
Montreal is mathematically eliminated → easy to see <br/>
→ Philly is mathematically eliminated also ! </p>
<ul>
<li>another case: </li>
</ul>
<p><img alt="" class="img-responsive" src="../images/algoII_week3_1/pasted_image019.png"/> <br/>
Detroit is mathematically eliminated ! <br/>
<img alt="" class="img-responsive" src="../images/algoII_week3_1/pasted_image020.png"/> <br/>
whether team-4 still has a chance to win? <br/>
<strong>modelling</strong> </p>
<ul>
<li>remaining games flow from s to t. </li>
<li>use team-pairs ans teams as vertices </li>
<li><em>carefully chosen capacities</em>(see below) </li>
</ul>
<p><img alt="" class="img-responsive" src="../images/algoII_week3_1/pasted_image021.png"/> <br/>
⇒ team 4 could win iff all flow from s are full (ie. all match points can be repartitioned over other teams <em>without depassing team 4's maximum wins</em>). <br/>
总之很巧妙.... </p>
</div>
<div class="entry-content jumbotron" id="source-content" style="display: none">
<!-- <pre><code id="source-code">
</code></pre> -->
<div id="source-code"></div>
</div>
<!-- /.entry-content -->
<div class="row" id="prevnext">
<div class="col-xs-12">
<a href="https://x-wei.github.io/algoII_week2_2.html" class="btn btn-default btn-lg" style="float:left;clear:both;background-color:#fff;">
<h4><i class="fa fa-arrow-left"></i>
[Algorithms II] Week 2-2 Shortest Paths
</h4>
</a>
</div>
<div class="col-xs-12">
<a href="https://x-wei.github.io/TeXmacs_intro.html" class="btn btn-default btn-lg" style="float:right;clear:both;background-color:#fff;">
<h4>
学术文章写作利器: TeXmacs介绍<i class="fa fa-arrow-right"></i>
</h4>
</a>
</div>
</div>
<div class="panel panel-default" id="series">
<div class="panel-heading">
<h4>
Part 5 of series «Algorithms Princeton MOOC II»:
</h4>
</div>
<ul class="list-group">
<li class="list-group-item"><a class="btn btn-default" href='https://x-wei.github.io/algoII_week1_1.html' style="text-align:left">[Algorithms II] Week 1-1 Undirected Graphs</a></li>
<li class="list-group-item"><a class="btn btn-default" href='https://x-wei.github.io/algoII_week1_2.html' style="text-align:left">[Algorithms II] Week 1-2 Directed Graphs</a></li>
<li class="list-group-item"><a class="btn btn-default" href='https://x-wei.github.io/algoII_week2_1.html' style="text-align:left">[Algorithms II] Week 2-1 Minimum Spanning Trees</a></li>
<li class="list-group-item"><a class="btn btn-default" href='https://x-wei.github.io/algoII_week2_2.html' style="text-align:left">[Algorithms II] Week 2-2 Shortest Paths</a></li>
<li class="list-group-item"><a class="btn btn-primary" href='https://x-wei.github.io/algoII_week3_1.html' style="text-align:left">[Algorithms II] Week 3-1 Maximum Flow</a></li>
<li class="list-group-item"><a class="btn btn-default" href='https://x-wei.github.io/algoII_week3_2.html' style="text-align:left">[Algorithms II] Week 3-2 Radix Sorts</a></li>
<li class="list-group-item"><a class="btn btn-default" href='https://x-wei.github.io/algoII_week4_1.html' style="text-align:left">[Algorithms II] Week 4-1 Tries</a></li>
<li class="list-group-item"><a class="btn btn-default" href='https://x-wei.github.io/algoII_week4_2.html' style="text-align:left">[Algorithms II] Week 4-2 Substring Search</a></li>
<li class="list-group-item"><a class="btn btn-default" href='https://x-wei.github.io/algoII_week5_1.html' style="text-align:left">[Algorithms II] Week 5-1 Regular Expressions</a></li>
<li class="list-group-item"><a class="btn btn-default" href='https://x-wei.github.io/algoII_week5_2.html' style="text-align:left">[Algorithms II] Week 5-2 Data Compression</a></li>
<li class="list-group-item"><a class="btn btn-default" href='https://x-wei.github.io/algoII_week6_1_reductions.html' style="text-align:left">[Algorithms II] Week 6-1 Reductions</a></li>
<li class="list-group-item"><a class="btn btn-default" href='https://x-wei.github.io/algoII_week6_2_LP.html' style="text-align:left">[Algorithms II] Week 6-2 Linear Programming</a></li>
<li class="list-group-item"><a class="btn btn-default" href='https://x-wei.github.io/algoII_week6_3_intractability.html' style="text-align:left">[Algorithms II] Week 6-3 Intractability</a></li>
</ul>
</div>
<section class="comments" id="comments">
<div class="panel-group" id="accordion" role="tablist" aria-multiselectable="true">
<div class="panel panel-primary">
<div class="panel-heading" role="tab" id="disqus-heading">
<h4 class="panel-title">
<a data-toggle="collapse" data-parent="#accordion" href="#disqus-comments" aria-expanded="true" aria-controls="disqus-comments">
<i class="fa fa-comments-o"></i> Disqus 留言
</a>
</h4>
</div>
<div id="disqus-comments" class="panel-collapse collapse.show" role="tabpanel" aria-labelledby="disqus-heading">
<div class="panel-body">
<div class="tab-pane fade active in" id="disqus-comments">
<div id="disqus_thread"></div>
<script type="text/javascript">
/* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */
var disqus_shortname = 'xweisblog'; // required: replace example with your forum shortname
var disqus_identifier = 'algoII_week3_1';
var disqus_url = 'https://x-wei.github.io/algoII_week3_1.html';
var disqus_config = function () {
this.language = "zh";
};
/* * * DON'T EDIT BELOW THIS LINE * * */
(function () {
var dsq = document.createElement('script');
dsq.type = 'text/javascript';
dsq.async = true;
dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
</script>
<noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by
Disqus.</a></noscript>
<a href="http://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
</div>
</div>
</div>
</div>
</div>
</section> </article>
</section>
</div>
<!-- Modal -->
<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<a data-dismiss="modal" href="javascript:void(0);">
<img id="mimg" src="" style="width:100%;height:auto">
</a>
</div>
</div><!-- /.modal-dialog -->
</div><!-- /.modal -->
</div>
<div class="col-xl-3 col-lg-4 col-md-6" id="sidebar">
<aside>
<section>
<div class="sidebar-container">
<div class="sidebar-item ">
<div class="panel panel-default">
<div class="panel-heading">
<h4>
<i class="fa fa-user fa-lg"></i>
<a href="https://x-wei.github.io/about.html">
关于 mx
</a>
</h4>
</div>
<div class="panel-body" id="aboutme">
<a href="https://x-wei.github.io/about.html"><img width="100%" src="https://x-wei.github.io/../images/mx.jpg"/></a>
<h3 style="text-align:center">
<a href="https://github.com/x-wei" target="_blank">
<i class="fa fa-github" style="text-align:center"></i></a>
<a href="https://weibo.com/u/1817154611" target="_blank">
<i class="fa fa-weibo" style="text-align:center"></i></a>
<a href="mailto:[email protected]" target="_blank">
<i class="mdi-communication-email" style="text-align:center"></i></a>
</h3>
<h4 class="widget-title">推荐文章</h4>
<div class="textwidget">
<li class="widget-container widget_text">
<a href="https://x-wei.github.io/TeXmacs_intro.html">学术文章写作利器: TeXmacs介绍</a><br></li>
<li class="widget-container widget_text">
<a href="https://x-wei.github.io/hashcode2014-solved-by-LP.html">运筹的力量: 用线性规划解决Google 2014 HashCode问题</a><br></li>
<li class="widget-container widget_text">
<a href="https://x-wei.github.io/%E6%AD%A3%E5%88%99%E8%A1%A8%E8%BE%BE%E5%BC%8F%E5%85%A5%E9%97%A8%E7%AE%80%E4%BB%8B.html">正则表达式入门简介</a><br></li>
<li class="widget-container widget_text">
<a href="https://x-wei.github.io/%E6%88%91%E7%9A%84ubuntu10.04%E9%85%8D%E7%BD%AE%E6%80%BB%E7%BB%93.html">我的ubuntu10.04配置总结</a><br></li>
<li class="widget-container widget_text">
<a href="https://x-wei.github.io/PT-summery.html">2011巴黎高科(ParisTech)申请总结</a><br></li>
<li class="widget-container widget_text">
<a href="https://x-wei.github.io/GT-summery.html">用尽量少的时间考一个够用的分数--一点Tofel/GRE备考经验</a><br></li>
<li class="widget-container widget_text">
<a href="https://x-wei.github.io/pelican_github_blog.html">用pelican在github上创建自己的博客!</a><br></li>
</div>
<br><a href="https://www.polytechnique.edu/" target="_blank">
<img src="https://x-wei.github.io/images/x-logo.png" alt="X" width="180" border="0" />
</a><br/>
<br><a href="https://www.sjtu.edu.cn/">
<img src="https://x-wei.github.io/images/ssss.jpg" width="180" border="0" alt="上海西南某高校">
</a><br/>
<br>
<h4 class="widget-title">Visitors</h4>
<script type="text/javascript" src="//rf.revolvermaps.com/0/0/1.js?i=59olkba9w7e&s=220&m=3&v=true&r=false&b=000000&n=false&c=ff0000" async="async"></script>
<!-- hitwebcounter Code START -->
<a href="https://www.hitwebcounter.com/how-to/how-to-what-is-free-blog-counter.php" target="_blank">
<img src="https://hitwebcounter.com/counter/counter.php?page=5954927&style=0036&nbdigits=5&type=ip&initCount=0" title="web counter" Alt="web counter" border="0" ></a>
<br/>
</div>
</div>
</div>
<div class="sidebar-item ">
<div class="panel panel-default">
<div class="panel-heading">
<h4>
<a href="https://x-wei.github.io/tags.html"><i class="fa fa-tags fa-lg"></i><span class="icon-label">标签云</span></a>
</h4>
</div>
<div class="panel-body">
<ul class="list-group list-inline tagcloud" id="tags">
<li class="list-group-item tag-2">
<a href="https://x-wei.github.io/tag/pelican.html">
pelican <sup> 6</sup>
</a>
</li>
<li class="list-group-item tag-2">
<a href="https://x-wei.github.io/tag/google.html">
google <sup> 6</sup>
</a>
</li>
<li class="list-group-item tag-2">
<a href="https://x-wei.github.io/tag/torch.html">
torch <sup> 6</sup>
</a>
</li>
<li class="list-group-item tag-2">
<a href="https://x-wei.github.io/tag/tex.html">
tex <sup> 4</sup>
</a>
</li>
<li class="list-group-item tag-4">
<a href="https://x-wei.github.io/tag/ba-li-gao-ke.html">
巴黎高科 <sup> 1</sup>
</a>
</li>
<li class="list-group-item tag-3">
<a href="https://x-wei.github.io/tag/markdown.html">
markdown <sup> 2</sup>
</a>
</li>
<li class="list-group-item tag-3">
<a href="https://x-wei.github.io/tag/linux.html">
linux <sup> 3</sup>
</a>
</li>
<li class="list-group-item tag-4">
<a href="https://x-wei.github.io/tag/inf422.html">
inf422 <sup> 1</sup>
</a>
</li>
<li class="list-group-item tag-4">
<a href="https://x-wei.github.io/tag/toefl.html">
Toefl <sup> 1</sup>
</a>
</li>
<li class="list-group-item tag-4">
<a href="https://x-wei.github.io/tag/regex.html">
regex <sup> 1</sup>
</a>
</li>
<li class="list-group-item tag-2">
<a href="https://x-wei.github.io/tag/git.html">
git <sup> 5</sup>
</a>
</li>
<li class="list-group-item tag-4">
<a href="https://x-wei.github.io/tag/weka.html">
weka <sup> 1</sup>
</a>
</li>
<li class="list-group-item tag-1">
<a href="https://x-wei.github.io/tag/scala.html">
scala <sup> 12</sup>
</a>
</li>
<li class="list-group-item tag-4">
<a href="https://x-wei.github.io/tag/opencv.html">
opencv <sup> 1</sup>
</a>
</li>
<li class="list-group-item tag-4">
<a href="https://x-wei.github.io/tag/scrapy.html">
scrapy <sup> 1</sup>
</a>
</li>
<li class="list-group-item tag-4">
<a href="https://x-wei.github.io/tag/gre.html">
GRE <sup> 1</sup>
</a>
</li>
<li class="list-group-item tag-4">
<a href="https://x-wei.github.io/tag/lp.html">
LP <sup> 1</sup>
</a>
</li>
<li class="list-group-item tag-2">
<a href="https://x-wei.github.io/tag/android.html">
android <sup> 9</sup>
</a>
</li>
<li class="list-group-item tag-4">
<a href="https://x-wei.github.io/tag/pandas.html">
pandas <sup> 1</sup>
</a>
</li>
<li class="list-group-item tag-3">
<a href="https://x-wei.github.io/tag/codejam.html">
codejam <sup> 2</sup>
</a>
</li>
<li class="list-group-item tag-3">
<a href="https://x-wei.github.io/tag/fr.html">
fr <sup> 2</sup>
</a>
</li>
<li class="list-group-item tag-2">
<a href="https://x-wei.github.io/tag/shell.html">
shell <sup> 4</sup>
</a>
</li>
<li class="list-group-item tag-1">
<a href="https://x-wei.github.io/tag/python.html">
python <sup> 13</sup>
</a>
</li>
<li class="list-group-item tag-4">
<a href="https://x-wei.github.io/tag/simongarfunkel.html">
Simon&Garfunkel <sup> 1</sup>
</a>
</li>
<li class="list-group-item tag-3">
<a href="https://x-wei.github.io/tag/french.html">
french <sup> 2</sup>
</a>
</li>
<li class="list-group-item tag-2">
<a href="https://x-wei.github.io/tag/wai-guan.html">
外观 <sup> 4</sup>
</a>
</li>
<li class="list-group-item tag-3">
<a href="https://x-wei.github.io/tag/zhong-wen-luan-ma.html">
中文乱码 <sup> 2</sup>
</a>
</li>
<li class="list-group-item tag-3">
<a href="https://x-wei.github.io/tag/host.html">
host <sup> 3</sup>
</a>
</li>
<li class="list-group-item tag-3">
<a href="https://x-wei.github.io/tag/ssh.html">
ssh <sup> 2</sup>
</a>
</li>
<li class="list-group-item tag-4">
<a href="https://x-wei.github.io/tag/ubuntu.html">
ubuntu <sup> 1</sup>
</a>
</li>
<li class="list-group-item tag-2">
<a href="https://x-wei.github.io/tag/java.html">
java <sup> 4</sup>
</a>
</li>
<li class="list-group-item tag-2">
<a href="https://x-wei.github.io/tag/spark.html">
spark <sup> 6</sup>
</a>
</li>
<li class="list-group-item tag-3">
<a href="https://x-wei.github.io/tag/tips.html">
tips <sup> 3</sup>
</a>
</li>
<li class="list-group-item tag-1">
<a href="https://x-wei.github.io/tag/deep-learning.html">
deep learning <sup> 28</sup>
</a>
</li>
<li class="list-group-item tag-4">
<a href="https://x-wei.github.io/tag/c.html">
C++ <sup> 1</sup>
</a>
</li>
<li class="list-group-item tag-1">
<a href="https://x-wei.github.io/tag/algorithm.html">
algorithm <sup> 35</sup>
</a>
</li>
<li class="list-group-item tag-4">
<a href="https://x-wei.github.io/tag/texmacs.html">
TeXmacs <sup> 1</sup>
</a>
</li>
<li class="list-group-item tag-2">
<a href="https://x-wei.github.io/tag/ml.html">
ml <sup> 4</sup>
</a>
</li>
<li class="list-group-item tag-2">
<a href="https://x-wei.github.io/tag/eclipse.html">
eclipse <sup> 4</sup>
</a>
</li>
<li class="list-group-item tag-2">
<a href="https://x-wei.github.io/tag/ocaml.html">
OCaml <sup> 8</sup>
</a>
</li>
<li class="list-group-item tag-2">
<a href="https://x-wei.github.io/tag/r.html">
R <sup> 4</sup>
</a>
</li>
<li class="list-group-item tag-3">
<a href="https://x-wei.github.io/tag/chu-guo.html">
出国 <sup> 2</sup>
</a>
</li>
<li class="list-group-item tag-3">
<a href="https://x-wei.github.io/tag/kuai-jie-jian.html">
快捷键 <sup> 3</sup>
</a>
</li>
</ul>
</div>
</div>
</div>
<li class="list-group-item"><h4><i class="fa fa-tags fa-list-ul"></i><span class="icon-label">Series</span></h4>
<ul class="list-group">
<li class="list-group-item">
<h5></i> Previous article</h5>
<a href="https://x-wei.github.io/algoII_week2_2.html">[Algorithms II] Week 2-2 Shortest Paths</a>
</li>
<li class="list-group-item">
<h5>Next article</h5>
<a href="https://x-wei.github.io/algoII_week3_2.html">[Algorithms II] Week 3-2 Radix Sorts</a>
</li>
</ul>
</li>
<div class="sidebar-item hidden-xs">
<div class="panel panel-default">
<div class="panel-heading">
<h4>
<i class="fa fa-github fa-lg"></i><span class="icon-label">GitHub仓库</span>
</h4>
</div>
<div class="panel-body">
<div id="gh_repos">
<p class="list-group-item">Status updating...</p>
</div>
<a href="https://github.com/x-wei">@x-wei</a> on GitHub
</div>
</div>
</div>
</div>
</section>
<div class="panel panel-default hidden-xs hidden-sm" id="affix-toc">
<div class="panel-heading"><h4>
目录</h4>
</div>
<div class="panel-boy">
<div id="toc"><ul><li><a class="toc-href" href="#1-introduction-to-maxflow" title="1. Introduction to Maxflow">1. Introduction to Maxflow</a><ul><li><a class="toc-href" href="#min-cut-pb" title="Min-cut pb">Min-cut pb</a></li><li><a class="toc-href" href="#max-flow-pb" title="Max-flow pb">Max-flow pb</a></li></ul></li><li><a class="toc-href" href="#2-ford-fulkerson-algorithm_1" title="2. Ford-Fulkerson Algorithm">2. Ford-Fulkerson Algorithm</a></li><li><a class="toc-href" href="#3-maxflow-mincut-theorem" title="3. Maxflow-Mincut Theorem">3. Maxflow-Mincut Theorem</a></li><li><a class="toc-href" href="#4-running-time-analysis" title="4. Running Time Analysis">4. Running Time Analysis</a><ul><li><a class="toc-href" href="#integer-capacity-graphs" title="integer capacity graphs">integer capacity graphs</a></li><li><a class="toc-href" href="#bad-case-for-ff" title="Bad case for FF">Bad case for FF</a></li></ul></li><li><a class="toc-href" href="#5-java-implementation_1" title="5. Java Implementation">5. Java Implementation</a><ul><li><a class="toc-href" href="#representation-of-flow-graph" title="representation of flow graph">representation of flow graph</a></li><li><a class="toc-href" href="#residual-graph-gr" title="Residual graph Gr">Residual graph Gr</a></li><li><a class="toc-href" href="#apis" title="APIs">APIs</a></li></ul></li><li><a class="toc-href" href="#6-maxflow-applications_1" title="6. Maxflow Applications">6. Maxflow Applications</a><ul><li><a class="toc-href" href="#ex1-bipartite-matching-pb" title="ex1. bipartite matching pb">ex1. bipartite matching pb</a></li><li><a class="toc-href" href="#ex2-baseball-elimination" title="ex2. baseball elimination">ex2. baseball elimination</a></li></ul></li></ul></div>
</div>
</div>
</aside>
</div>
</div>
</div>
<footer id="fcfooter">
<hr/>
<div class="container">
links :
<a href="https://farseerfc.github.com/">farseerfc</a>
<a href="https://hyhx2008.github.com/">H.Y.</a>
<a href="https://reginald1787.github.io/">reginald1787</a>
<a href="https://log.dofine.me/">dofine</a>
<div class="row">
<div class="col-md-14">
<p><small>
© 2020 mx
· 通过
<a href="https://docs.getpelican.com/" target="_blank">Pelican</a> 生成 <a rel="license" href="https://creativecommons.org/licenses/by-nc-sa/4.0/"><img alt="Creative Commons License" style="border-width:0" src="//i.creativecommons.org/l/by-nc-sa/4.0/80x15.png" /></a>
<!-- Content -->
<!-- licensed under a <a rel="license" href="https://creativecommons.org/licenses/by-nc-sa/4.0/">Creative Commons Attribution 4.0 International License</a>, except where indicated otherwise. -->
</small></p>
</div>
</div>
</div>
<a href="#" class="btn btn-primary btn-fab btn-raised mdi-editor-vertical-align-top withripple" style="position:fixed;bottom:30px;right:30px;z-index:1000"></a>
</footer>
<script src="https://x-wei.github.io/theme/js/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="https://x-wei.github.io/theme/js/bootstrap.min.js"></script>
<!-- Enable responsive features in IE8 with Respond.js (https://github.com/scottjehl/Respond) -->
<script src="https://x-wei.github.io/theme/js/respond.min.js"></script>
<!-- GitHub JS -->
<script type="text/javascript">
$(document).ready(function () {
if (!window.jXHR) {
var jxhr = document.createElement('script');
jxhr.type = 'text/javascript';
jxhr.src = 'https://x-wei.github.io/theme/js/jXHR.js';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(jxhr, s);
}