結果

問題 No.1479 Matrix Eraser
ユーザー titiatitia
提出日時 2024-05-07 03:55:42
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 2,645 bytes
コンパイル時間 298 ms
コンパイル使用メモリ 82,580 KB
実行使用メモリ 591,412 KB
最終ジャッジ日時 2024-05-07 03:56:26
合計ジャッジ時間 8,110 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
59,648 KB
testcase_01 AC 48 ms
54,784 KB
testcase_02 AC 55 ms
63,616 KB
testcase_03 AC 45 ms
55,424 KB
testcase_04 AC 48 ms
55,424 KB
testcase_05 AC 50 ms
62,976 KB
testcase_06 AC 51 ms
62,976 KB
testcase_07 AC 312 ms
128,552 KB
testcase_08 AC 449 ms
159,816 KB
testcase_09 AC 932 ms
271,112 KB
testcase_10 TLE -
testcase_11 AC 1,294 ms
305,068 KB
testcase_12 AC 382 ms
138,040 KB
testcase_13 AC 478 ms
170,616 KB
testcase_14 AC 367 ms
137,740 KB
testcase_15 AC 176 ms
91,648 KB
testcase_16 AC 419 ms
150,188 KB
testcase_17 MLE -
testcase_18 TLE -
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 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 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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:
            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:
            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)

0