結果

問題 No.421 しろくろチョコレート
ユーザー H3PO4H3PO4
提出日時 2020-09-16 10:04:28
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 1,428 ms / 2,000 ms
コード長 957 bytes
コンパイル時間 80 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 110,704 KB
最終ジャッジ日時 2024-09-23 07:28:35
合計ジャッジ時間 66,458 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
外部呼び出し有り
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,428 ms
56,656 KB
testcase_01 AC 993 ms
56,560 KB
testcase_02 AC 929 ms
56,680 KB
testcase_03 AC 926 ms
56,672 KB
testcase_04 AC 928 ms
56,560 KB
testcase_05 AC 935 ms
56,684 KB
testcase_06 AC 929 ms
56,808 KB
testcase_07 AC 948 ms
56,428 KB
testcase_08 AC 940 ms
56,428 KB
testcase_09 AC 932 ms
56,816 KB
testcase_10 AC 940 ms
56,304 KB
testcase_11 AC 939 ms
56,676 KB
testcase_12 AC 931 ms
56,552 KB
testcase_13 AC 930 ms
56,432 KB
testcase_14 AC 938 ms
56,560 KB
testcase_15 AC 956 ms
56,408 KB
testcase_16 AC 938 ms
56,692 KB
testcase_17 AC 944 ms
56,812 KB
testcase_18 AC 947 ms
56,808 KB
testcase_19 AC 929 ms
56,180 KB
testcase_20 AC 933 ms
56,420 KB
testcase_21 AC 933 ms
56,424 KB
testcase_22 AC 931 ms
56,560 KB
testcase_23 AC 947 ms
55,924 KB
testcase_24 AC 938 ms
56,172 KB
testcase_25 AC 927 ms
56,308 KB
testcase_26 AC 943 ms
56,684 KB
testcase_27 AC 938 ms
56,680 KB
testcase_28 AC 947 ms
56,428 KB
testcase_29 AC 938 ms
56,808 KB
testcase_30 AC 937 ms
56,560 KB
testcase_31 AC 936 ms
56,464 KB
testcase_32 AC 942 ms
56,552 KB
testcase_33 AC 956 ms
56,296 KB
testcase_34 AC 935 ms
56,676 KB
testcase_35 AC 934 ms
56,432 KB
testcase_36 AC 933 ms
56,432 KB
testcase_37 AC 942 ms
56,680 KB
testcase_38 AC 938 ms
56,804 KB
testcase_39 AC 939 ms
56,676 KB
testcase_40 AC 935 ms
56,676 KB
testcase_41 AC 928 ms
56,548 KB
testcase_42 AC 950 ms
56,676 KB
testcase_43 AC 935 ms
56,940 KB
testcase_44 AC 951 ms
56,592 KB
testcase_45 AC 954 ms
56,424 KB
testcase_46 AC 935 ms
56,564 KB
testcase_47 AC 933 ms
56,440 KB
testcase_48 AC 941 ms
56,556 KB
testcase_49 AC 934 ms
56,936 KB
testcase_50 AC 948 ms
56,548 KB
testcase_51 AC 971 ms
56,808 KB
testcase_52 AC 942 ms
56,560 KB
testcase_53 AC 929 ms
56,672 KB
testcase_54 AC 942 ms
56,680 KB
testcase_55 AC 929 ms
56,432 KB
testcase_56 AC 937 ms
56,552 KB
testcase_57 AC 937 ms
56,676 KB
testcase_58 AC 950 ms
56,444 KB
testcase_59 AC 937 ms
56,680 KB
testcase_60 AC 943 ms
56,436 KB
testcase_61 AC 945 ms
56,424 KB
testcase_62 AC 932 ms
56,436 KB
testcase_63 AC 939 ms
56,428 KB
testcase_64 AC 940 ms
110,704 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)

size = N * M // 2 + 1
matr = csr_matrix(([1] * len(white), (white, black)), shape=(size, size))
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