結果
問題 | No.1479 Matrix Eraser |
ユーザー | titia |
提出日時 | 2024-05-07 03:42:13 |
言語 | PyPy3 (7.3.15) |
結果 |
MLE
|
実行時間 | - |
コード長 | 2,267 bytes |
コンパイル時間 | 264 ms |
コンパイル使用メモリ | 82,036 KB |
実行使用メモリ | 658,092 KB |
最終ジャッジ日時 | 2024-11-29 16:19:12 |
合計ジャッジ時間 | 68,890 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 44 ms
61,356 KB |
testcase_01 | MLE | - |
testcase_02 | AC | 52 ms
71,060 KB |
testcase_03 | MLE | - |
testcase_04 | AC | 46 ms
63,416 KB |
testcase_05 | MLE | - |
testcase_06 | AC | 54 ms
69,932 KB |
testcase_07 | MLE | - |
testcase_08 | AC | 407 ms
166,288 KB |
testcase_09 | AC | 921 ms
278,700 KB |
testcase_10 | MLE | - |
testcase_11 | AC | 1,122 ms
303,524 KB |
testcase_12 | AC | 343 ms
137,728 KB |
testcase_13 | AC | 455 ms
175,224 KB |
testcase_14 | AC | 345 ms
138,852 KB |
testcase_15 | AC | 152 ms
90,068 KB |
testcase_16 | AC | 404 ms
155,644 KB |
testcase_17 | MLE | - |
testcase_18 | MLE | - |
testcase_19 | TLE | - |
testcase_20 | MLE | - |
testcase_21 | TLE | - |
testcase_22 | MLE | - |
testcase_23 | MLE | - |
testcase_24 | MLE | - |
testcase_25 | MLE | - |
testcase_26 | MLE | - |
testcase_27 | TLE | - |
testcase_28 | TLE | - |
testcase_29 | TLE | - |
testcase_30 | TLE | - |
testcase_31 | TLE | - |
testcase_32 | AC | 1,058 ms
356,852 KB |
testcase_33 | AC | 1,027 ms
355,332 KB |
testcase_34 | AC | 1,060 ms
357,168 KB |
testcase_35 | AC | 1,074 ms
356,408 KB |
testcase_36 | AC | 1,078 ms
357,596 KB |
testcase_37 | AC | 209 ms
161,936 KB |
testcase_38 | MLE | - |
testcase_39 | MLE | - |
testcase_40 | MLE | - |
ソースコード
import sys input = sys.stdin.readline H,W=map(int,input().split()) A=[list(map(int,input().split())) for i in range(H)] # dinic法 from collections import defaultdict,deque V=H*W*3+2 start=V-2 goal=V-1 EDGE=[defaultdict(int) for i in range(V)] now=H*W for i in range(H): L=defaultdict(list) for j in range(W): if A[i][j]!=0: L[A[i][j]].append(i*W+j) for l in L: EDGE[start][now]=1 for x in L[l]: EDGE[now][x]=1<<63 now+=1 for j in range(W): L=defaultdict(list) for i in range(H): if A[i][j]!=0: L[A[i][j]].append(i*W+j) for l in L: EDGE[now][goal]=1 for x in L[l]: EDGE[x][now]=1<<63 now+=1 ANS=0 while True: # まずBFSする DIS=[-1]*V Q=deque([start]) DIS[start]=0 EDGE2=[[] for i in range(V)] while Q: x=Q.popleft() for to in EDGE[x]: if EDGE[x][to]==0: continue if DIS[to]==-1: DIS[to]=DIS[x]+1 Q.append(to) EDGE2[x].append(to) elif DIS[to]==DIS[x]+1: EDGE2[x].append(to) if DIS[goal]==-1: break # BFSしたときのEDGEを使ってDFSする MINCOST=[float("inf")]*V NOW=start ROUTE=[-1]*V while NOW!=-1: # DFS cost=MINCOST[NOW] if NOW==goal: ANS+=cost i=goal while i!=start: # goalからたどり,Routeを使ってEDGEの更新 j=ROUTE[i] if EDGE[j][i]==cost: NOW=j EDGE2[j].pop() EDGE[j][i]-=cost # 使ったルートをいけなく更新 MINCOST[j]-=cost EDGE[i][j]+=cost # 逆向きに進めるようにする. i=j continue if EDGE2[NOW]: to=EDGE2[NOW][-1] ROUTE[to]=NOW MINCOST[to]=min(cost,EDGE[NOW][to]) NOW=to else: if NOW==start: break EDGE2[ROUTE[NOW]].pop() NOW=ROUTE[NOW] print(ANS)