結果

問題 No.1479 Matrix Eraser
ユーザー titiatitia
提出日時 2024-05-07 03:44:49
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 2,271 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 82,192 KB
実行使用メモリ 649,272 KB
最終ジャッジ日時 2024-11-29 16:22:35
合計ジャッジ時間 65,431 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
59,136 KB
testcase_01 MLE -
testcase_02 AC 53 ms
69,248 KB
testcase_03 MLE -
testcase_04 AC 46 ms
62,368 KB
testcase_05 MLE -
testcase_06 AC 52 ms
69,768 KB
testcase_07 MLE -
testcase_08 AC 397 ms
166,276 KB
testcase_09 AC 780 ms
258,848 KB
testcase_10 AC 2,478 ms
489,668 KB
testcase_11 AC 1,079 ms
305,204 KB
testcase_12 AC 327 ms
137,096 KB
testcase_13 AC 393 ms
159,868 KB
testcase_14 AC 329 ms
138,724 KB
testcase_15 AC 147 ms
89,956 KB
testcase_16 AC 357 ms
149,764 KB
testcase_17 MLE -
testcase_18 MLE -
testcase_19 TLE -
testcase_20 MLE -
testcase_21 MLE -
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,004 ms
334,416 KB
testcase_33 AC 1,045 ms
350,440 KB
testcase_34 AC 1,048 ms
351,696 KB
testcase_35 AC 1,042 ms
351,452 KB
testcase_36 AC 1,009 ms
335,256 KB
testcase_37 AC 211 ms
161,756 KB
testcase_38 MLE -
testcase_39 MLE -
testcase_40 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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]=1000000

        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]=1000000

        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)

0