結果
問題 | No.1479 Matrix Eraser |
ユーザー | titia |
提出日時 | 2024-05-07 03:41:55 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 2,267 bytes |
コンパイル時間 | 99 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 565,088 KB |
最終ジャッジ日時 | 2024-11-29 16:17:28 |
合計ジャッジ時間 | 110,104 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 33 ms
17,700 KB |
testcase_01 | AC | 31 ms
17,828 KB |
testcase_02 | AC | 32 ms
18,088 KB |
testcase_03 | AC | 36 ms
17,828 KB |
testcase_04 | AC | 32 ms
17,824 KB |
testcase_05 | AC | 33 ms
17,956 KB |
testcase_06 | AC | 33 ms
18,084 KB |
testcase_07 | AC | 705 ms
65,368 KB |
testcase_08 | AC | 1,270 ms
101,796 KB |
testcase_09 | MLE | - |
testcase_10 | TLE | - |
testcase_11 | MLE | - |
testcase_12 | AC | 940 ms
77,680 KB |
testcase_13 | AC | 1,293 ms
102,308 KB |
testcase_14 | AC | 977 ms
80,820 KB |
testcase_15 | AC | 216 ms
31,708 KB |
testcase_16 | AC | 1,152 ms
91,908 KB |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | TLE | - |
testcase_21 | TLE | - |
testcase_22 | TLE | - |
testcase_23 | TLE | - |
testcase_24 | TLE | - |
testcase_25 | TLE | - |
testcase_26 | TLE | - |
testcase_27 | TLE | - |
testcase_28 | TLE | - |
testcase_29 | TLE | - |
testcase_30 | TLE | - |
testcase_31 | TLE | - |
testcase_32 | TLE | - |
testcase_33 | TLE | - |
testcase_34 | TLE | - |
testcase_35 | TLE | - |
testcase_36 | TLE | - |
testcase_37 | AC | 1,457 ms
143,272 KB |
testcase_38 | TLE | - |
testcase_39 | TLE | - |
testcase_40 | AC | 31 ms
362,352 KB |
ソースコード
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)