結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 31 ms
10,880 KB
testcase_02 AC 32 ms
10,752 KB
testcase_03 AC 32 ms
10,624 KB
testcase_04 AC 32 ms
10,752 KB
testcase_05 AC 31 ms
10,624 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 292 ms
30,928 KB
testcase_08 AC 551 ms
45,412 KB
testcase_09 AC 1,257 ms
81,780 KB
testcase_10 AC 2,385 ms
132,948 KB
testcase_11 AC 1,436 ms
93,372 KB
testcase_12 AC 383 ms
36,596 KB
testcase_13 AC 565 ms
45,540 KB
testcase_14 AC 406 ms
37,728 KB
testcase_15 AC 99 ms
16,768 KB
testcase_16 AC 461 ms
40,160 KB
testcase_17 AC 2,982 ms
158,808 KB
testcase_18 AC 2,978 ms
159,120 KB
testcase_19 AC 2,972 ms
158,924 KB
testcase_20 TLE -
testcase_21 AC 2,994 ms
159,044 KB
testcase_22 AC 2,990 ms
158,800 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 AC 2,994 ms
159,036 KB
testcase_26 AC 2,981 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 111 ms
10,880 KB
testcase_38 AC 2,885 ms
65,408 KB
testcase_39 TLE -
testcase_40 AC 31 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 = [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 = 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