結果
問題 | No.1479 Matrix Eraser |
ユーザー | titia |
提出日時 | 2024-05-07 03:41:55 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,267 bytes |
コンパイル時間 | 199 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 294,148 KB |
最終ジャッジ日時 | 2024-05-07 03:42:08 |
合計ジャッジ時間 | 11,995 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 32 ms
16,384 KB |
testcase_01 | AC | 36 ms
10,880 KB |
testcase_02 | AC | 34 ms
10,880 KB |
testcase_03 | AC | 35 ms
11,008 KB |
testcase_04 | AC | 35 ms
11,136 KB |
testcase_05 | AC | 34 ms
11,008 KB |
testcase_06 | AC | 35 ms
11,008 KB |
testcase_07 | AC | 747 ms
58,420 KB |
testcase_08 | AC | 1,359 ms
94,976 KB |
testcase_09 | TLE | - |
testcase_10 | TLE | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
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 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
ソースコード
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)