結果

問題 No.1479 Matrix Eraser
ユーザー 小野寺健小野寺健
提出日時 2021-04-28 15:04:14
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,374 bytes
コンパイル時間 98 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 190,924 KB
最終ジャッジ日時 2024-07-07 13:02:40
合計ジャッジ時間 70,726 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 AC 28 ms
10,752 KB
testcase_05 AC 27 ms
10,880 KB
testcase_06 AC 26 ms
10,752 KB
testcase_07 AC 226 ms
31,056 KB
testcase_08 AC 385 ms
45,532 KB
testcase_09 AC 961 ms
81,772 KB
testcase_10 AC 1,876 ms
133,228 KB
testcase_11 AC 1,107 ms
93,372 KB
testcase_12 AC 278 ms
36,852 KB
testcase_13 AC 387 ms
45,664 KB
testcase_14 AC 289 ms
37,608 KB
testcase_15 AC 83 ms
16,896 KB
testcase_16 AC 318 ms
40,288 KB
testcase_17 AC 2,393 ms
158,928 KB
testcase_18 AC 2,383 ms
159,060 KB
testcase_19 AC 2,411 ms
159,168 KB
testcase_20 AC 2,395 ms
159,160 KB
testcase_21 AC 2,376 ms
159,172 KB
testcase_22 AC 2,400 ms
158,928 KB
testcase_23 AC 2,412 ms
158,928 KB
testcase_24 AC 2,391 ms
158,872 KB
testcase_25 AC 2,389 ms
159,032 KB
testcase_26 AC 2,418 ms
159,272 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 93 ms
10,752 KB
testcase_38 AC 2,552 ms
65,408 KB
testcase_39 AC 2,686 ms
190,924 KB
testcase_40 AC 25 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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 = xn
    right = 0

    ledges = []
    redges = matched

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

    return left + right


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

    S = dict()

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