結果
問題 | No.2328 Build Walls |
ユーザー | tyawanmusi |
提出日時 | 2023-05-15 17:15:29 |
言語 | PyPy3 (7.3.15) |
結果 |
MLE
|
実行時間 | - |
コード長 | 2,505 bytes |
コンパイル時間 | 202 ms |
コンパイル使用メモリ | 82,048 KB |
実行使用メモリ | 626,944 KB |
最終ジャッジ日時 | 2024-05-08 01:06:59 |
合計ジャッジ時間 | 6,549 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 50 ms
59,648 KB |
testcase_01 | AC | 48 ms
54,272 KB |
testcase_02 | AC | 54 ms
59,520 KB |
testcase_03 | AC | 50 ms
54,144 KB |
testcase_04 | AC | 55 ms
60,160 KB |
testcase_05 | AC | 50 ms
54,144 KB |
testcase_06 | AC | 48 ms
54,272 KB |
testcase_07 | AC | 64 ms
64,000 KB |
testcase_08 | AC | 77 ms
68,992 KB |
testcase_09 | AC | 49 ms
54,400 KB |
testcase_10 | AC | 48 ms
54,016 KB |
testcase_11 | AC | 49 ms
54,016 KB |
testcase_12 | AC | 48 ms
54,272 KB |
testcase_13 | MLE | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
ソースコード
import sys sys.setrecursionlimit(100000) from collections import deque class Dinic: def __init__(self, N): self.N = N self.G = [[] for i in range(N)] def add_edge(self, fr, to, cap): forward = [to, cap, None] forward[2] = backward = [fr, 0, forward] self.G[fr].append(forward) self.G[to].append(backward) def add_multi_edge(self, v1, v2, cap1, cap2): edge1 = [v2, cap1, None] edge1[2] = edge2 = [v1, cap2, edge1] self.G[v1].append(edge1) self.G[v2].append(edge2) def bfs(self, s, t): self.level = level = [None]*self.N deq = deque([s]) level[s] = 0 G = self.G while deq: v = deq.popleft() lv = level[v] + 1 for w, cap, _ in G[v]: if cap and level[w] is None: level[w] = lv deq.append(w) return level[t] is not None def dfs(self, v, t, f): if v == t: return f level = self.level for e in self.it[v]: w, cap, rev = e if cap and level[v] < level[w]: d = self.dfs(w, t, min(f, cap)) if d: e[1] -= d rev[1] += d return d return 0 def flow(self, s, t): flow = 0 INF = 10**9 + 7 G = self.G while self.bfs(s, t): *self.it, = map(iter, self.G) f = INF while f: f = self.dfs(s, t, INF) flow += f return flow h, w = map(int, input().split()) assert (3 <= min(h, w) <= max(h, w) <= 800) h -= 2 a = [list(map(int, input().split())) for _ in range(h)] def ij(i, j, t): return (i*w+j)*2+t dinic = Dinic(h*w*2+2) inf = 10**10 s = h*w*2 for i in range(h): for j in range(w): if a[i][j] != -1: dinic.add_edge(ij(i, j, 0), ij(i, j, 1), a[i][j]) else: dinic.add_edge(ij(i, j, 0), ij(i, j, 1), inf) if i != h-1: dinic.add_edge(ij(i, j, 1), ij(i+1, j, 0), inf) dinic.add_edge(ij(i+1, j, 1), ij(i, j, 0), inf) if j != w-1: dinic.add_edge(ij(i, j, 1), ij(i, j+1, 0), inf) dinic.add_edge(ij(i, j+1, 1), ij(i, j, 0), inf) for j in range(w): dinic.add_edge(s, ij(0, j, 0), inf) dinic.add_edge(ij(h-1, j, 1), s+1, inf) ans = dinic.flow(s, s+1) if ans >= inf: print(-1) else: print(ans)