結果

問題 No.421 しろくろチョコレート
ユーザー H3PO4H3PO4
提出日時 2020-09-16 10:01:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 947 bytes
コンパイル時間 128 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 57,200 KB
最終ジャッジ日時 2024-06-22 03:07:25
合計ジャッジ時間 70,000 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,050 ms
56,692 KB
testcase_01 AC 1,002 ms
56,684 KB
testcase_02 AC 1,001 ms
56,672 KB
testcase_03 AC 961 ms
56,808 KB
testcase_04 AC 983 ms
56,824 KB
testcase_05 AC 1,006 ms
56,684 KB
testcase_06 AC 992 ms
56,424 KB
testcase_07 AC 966 ms
56,560 KB
testcase_08 RE -
testcase_09 AC 983 ms
56,820 KB
testcase_10 AC 980 ms
56,812 KB
testcase_11 AC 967 ms
56,820 KB
testcase_12 AC 993 ms
56,556 KB
testcase_13 AC 994 ms
56,812 KB
testcase_14 AC 970 ms
56,428 KB
testcase_15 AC 990 ms
56,564 KB
testcase_16 AC 1,016 ms
56,820 KB
testcase_17 AC 978 ms
56,940 KB
testcase_18 AC 973 ms
56,936 KB
testcase_19 AC 993 ms
56,056 KB
testcase_20 AC 1,002 ms
56,688 KB
testcase_21 AC 985 ms
56,904 KB
testcase_22 AC 977 ms
56,564 KB
testcase_23 AC 990 ms
56,436 KB
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 AC 1,001 ms
56,808 KB
testcase_29 AC 1,016 ms
56,620 KB
testcase_30 AC 997 ms
56,440 KB
testcase_31 AC 975 ms
56,816 KB
testcase_32 AC 971 ms
56,944 KB
testcase_33 AC 1,007 ms
56,572 KB
testcase_34 AC 997 ms
56,684 KB
testcase_35 AC 957 ms
56,568 KB
testcase_36 RE -
testcase_37 AC 980 ms
56,816 KB
testcase_38 AC 966 ms
56,696 KB
testcase_39 AC 980 ms
56,812 KB
testcase_40 AC 1,004 ms
56,432 KB
testcase_41 AC 998 ms
56,680 KB
testcase_42 AC 958 ms
56,684 KB
testcase_43 AC 991 ms
56,676 KB
testcase_44 AC 994 ms
56,688 KB
testcase_45 AC 974 ms
56,952 KB
testcase_46 AC 1,051 ms
56,696 KB
testcase_47 RE -
testcase_48 AC 986 ms
57,200 KB
testcase_49 AC 977 ms
56,680 KB
testcase_50 RE -
testcase_51 AC 1,000 ms
56,808 KB
testcase_52 AC 993 ms
56,568 KB
testcase_53 AC 1,007 ms
56,568 KB
testcase_54 AC 1,022 ms
56,572 KB
testcase_55 AC 1,000 ms
56,556 KB
testcase_56 AC 990 ms
56,940 KB
testcase_57 AC 1,002 ms
56,808 KB
testcase_58 AC 1,003 ms
56,560 KB
testcase_59 AC 970 ms
56,680 KB
testcase_60 AC 1,016 ms
56,820 KB
testcase_61 AC 1,017 ms
56,944 KB
testcase_62 AC 1,016 ms
56,812 KB
testcase_63 AC 979 ms
56,560 KB
testcase_64 AC 991 ms
56,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from scipy.sparse import csr_matrix
from scipy.sparse.csgraph import maximum_bipartite_matching

N, M = map(int, input().split())
S = [input() for _ in range(N)]


def idx2int(n, m):
    return (n * M + m) // 2


white, black = [], []
for x in range(N):
    for y in range(x % 2, M, 2):
        if S[x][y] == 'w':
            for dx, dy in ((1, 0), (0, 1), (-1, 0), (0, -1)):
                if 0 <= x + dx < N and 0 <= y + dy < M and S[x + dx][y + dy] == 'b':
                    white.append(idx2int(x, y))
                    black.append(idx2int(x + dx, y + dy))
w_count = sum(s.count('w') for s in S)
b_count = sum(s.count('b') for s in S)

matr = csr_matrix(([1] * len(white), (white, black)), shape=(N * M // 2, N * M // 2))
match = sum(maximum_bipartite_matching(matr, perm_type='column') != -1)

w_count -= match
b_count -= match
major, minor = max(w_count, b_count), min(w_count, b_count)
print(match * 100 + minor * 10 + major - minor)
0