結果
問題 | No.1479 Matrix Eraser |
ユーザー | titia |
提出日時 | 2024-05-07 04:02:51 |
言語 | PyPy3 (7.3.15) |
結果 |
MLE
|
実行時間 | - |
コード長 | 2,884 bytes |
コンパイル時間 | 389 ms |
コンパイル使用メモリ | 81,844 KB |
実行使用メモリ | 544,920 KB |
最終ジャッジ日時 | 2024-05-07 04:03:34 |
合計ジャッジ時間 | 33,675 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | MLE | - |
testcase_01 | AC | 48 ms
55,168 KB |
testcase_02 | AC | 57 ms
62,720 KB |
testcase_03 | AC | 59 ms
60,544 KB |
testcase_04 | AC | 57 ms
62,720 KB |
testcase_05 | AC | 58 ms
62,336 KB |
testcase_06 | AC | 53 ms
60,800 KB |
testcase_07 | AC | 319 ms
114,012 KB |
testcase_08 | AC | 449 ms
143,668 KB |
testcase_09 | AC | 847 ms
232,392 KB |
testcase_10 | AC | 1,664 ms
348,984 KB |
testcase_11 | AC | 988 ms
251,472 KB |
testcase_12 | AC | 366 ms
130,552 KB |
testcase_13 | AC | 459 ms
144,216 KB |
testcase_14 | AC | 365 ms
131,968 KB |
testcase_15 | AC | 162 ms
88,708 KB |
testcase_16 | AC | 414 ms
137,816 KB |
testcase_17 | AC | 2,158 ms
404,836 KB |
testcase_18 | AC | 2,159 ms
405,132 KB |
testcase_19 | AC | 2,128 ms
405,240 KB |
testcase_20 | AC | 2,121 ms
404,844 KB |
testcase_21 | AC | 2,155 ms
404,996 KB |
testcase_22 | AC | 2,181 ms
404,668 KB |
testcase_23 | AC | 2,147 ms
404,824 KB |
testcase_24 | AC | 2,159 ms
404,784 KB |
testcase_25 | AC | 2,148 ms
404,780 KB |
testcase_26 | AC | 2,161 ms
404,800 KB |
testcase_27 | MLE | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
ソースコード
import sys input = sys.stdin.readline from operator import itemgetter 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-1 for i in range(H): L=[] for j in range(W): L.append((A[i][j],i*W+j)) L.sort(key=itemgetter(0)) for k in range(len(L)): if L[k][0]==0: continue if k-1>=0 and L[k][0]==L[k-1][0]: EDGE[start][now]=1 EDGE[now][L[k][1]]=1000000 else: if k+1<len(L) and L[k][0]!=L[k+1][0]: EDGE[start][L[k][1]]=1 else: now+=1 EDGE[start][now]=1 EDGE[now][L[k][1]]=1000000 for j in range(W): L=[] for i in range(H): L.append((A[i][j],i*W+j)) L.sort(key=itemgetter(0)) for k in range(len(L)): if L[k][0]==0: continue if k-1>=0 and L[k][0]==L[k-1][0]: EDGE[now][goal]=1 EDGE[L[k][1]][now]=1000000 else: if k+1<len(L) and L[k][0]!=L[k+1][0]: EDGE[L[k][1]][goal]=1 else: now+=1 EDGE[now][goal]=1 EDGE[L[k][1]][now]=1000000 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)