結果

問題 No.1479 Matrix Eraser
ユーザー 小野寺健小野寺健
提出日時 2021-04-28 14:16:23
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,349 bytes
コンパイル時間 80 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 72,180 KB
最終ジャッジ日時 2024-07-07 12:12:16
合計ジャッジ時間 33,948 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,880 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 29 ms
11,008 KB
testcase_03 AC 30 ms
10,880 KB
testcase_04 AC 28 ms
10,880 KB
testcase_05 AC 30 ms
11,008 KB
testcase_06 AC 30 ms
10,880 KB
testcase_07 AC 196 ms
17,700 KB
testcase_08 AC 306 ms
23,084 KB
testcase_09 AC 624 ms
36,112 KB
testcase_10 AC 1,125 ms
53,100 KB
testcase_11 AC 698 ms
39,744 KB
testcase_12 AC 227 ms
19,660 KB
testcase_13 AC 299 ms
23,084 KB
testcase_14 AC 233 ms
19,776 KB
testcase_15 AC 77 ms
12,800 KB
testcase_16 AC 264 ms
20,284 KB
testcase_17 AC 1,370 ms
65,356 KB
testcase_18 AC 1,362 ms
65,356 KB
testcase_19 AC 1,367 ms
65,452 KB
testcase_20 AC 1,372 ms
65,452 KB
testcase_21 AC 1,343 ms
65,208 KB
testcase_22 AC 1,349 ms
65,360 KB
testcase_23 AC 1,357 ms
65,352 KB
testcase_24 AC 1,313 ms
65,484 KB
testcase_25 AC 1,383 ms
65,580 KB
testcase_26 AC 1,492 ms
65,440 KB
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 96 ms
10,880 KB
testcase_38 AC 2,599 ms
33,280 KB
testcase_39 AC 1,453 ms
72,180 KB
testcase_40 AC 28 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

def dfs(v, visited):
    global edges, matched
    for u in edges[v]:
        if u in visited:
            continue
        visited.add(u)
        if matched[u] == -1 or dfs(matched[u], visited):
            matched[u] = v
            return True
    return False
    
def mpc(xn, yn):
    global matched, edges
    matched = [-1] * yn

    left = [True] * xn
    right = [False] * yn

    ledges = []
    redges = matched

    for v in range(xn):
        if not dfs(v, set()):
            left[v] = False
            ledges.append(v)
    for v in ledges:
        for u in edges[v]:
            right[u] = True
            if redges[u] >= 0:
                left[redges[u]] = False

    return sum(left+right)


if __name__ == '__main__':
    H, W = map(int, input().split())

    S = defaultdict(list)

    for i in range(H):
        for j, a in enumerate(list(map(int, input().split()))):
            if a > 0:
                S[a].append((i, j))
    
    cnt = 0
    for a, l in S.items():
        h , w = set(), set()
        for i, j in l:
            h.add(i)
            w.add(j)
        h, w = list(h), list(w)
        edges = [set() for _ in range(len(h))]
        for i, j in l:
            edges[h.index(i)].add(w.index(j))
        
        n = mpc(len(h), len(w))
        cnt += n
    
    print(cnt)
0