There was an error while loading. Please reload this page.
1 parent 42783d6 commit 2804775Copy full SHA for 2804775
src/class47/Code03_DinicAlgorithm.java
@@ -62,7 +62,6 @@ public int maxFlow(int s, int t) {
62
}
63
64
private boolean bfs(int s, int t) {
65
-depth[s] = 0;
66
LinkedList<Integer> queue = new LinkedList<>();
67
queue.addFirst(s);
68
boolean[] visited = new boolean[N];
0 commit comments