結果

問題 No.1345 Beautiful BINGO
ユーザー H3PO4H3PO4
提出日時 2021-01-16 13:59:39
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 1,148 bytes
コンパイル時間 468 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 50,708 KB
最終ジャッジ日時 2024-05-05 16:06:26
合計ジャッジ時間 21,401 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 517 ms
50,708 KB
testcase_01 AC 520 ms
43,484 KB
testcase_02 AC 522 ms
43,608 KB
testcase_03 AC 517 ms
43,632 KB
testcase_04 AC 524 ms
43,864 KB
testcase_05 AC 524 ms
43,996 KB
testcase_06 AC 516 ms
43,868 KB
testcase_07 AC 558 ms
43,860 KB
testcase_08 AC 524 ms
43,608 KB
testcase_09 AC 522 ms
43,484 KB
testcase_10 AC 517 ms
43,860 KB
testcase_11 AC 518 ms
44,124 KB
testcase_12 AC 515 ms
43,736 KB
testcase_13 AC 561 ms
43,752 KB
testcase_14 AC 523 ms
43,612 KB
testcase_15 AC 517 ms
43,884 KB
testcase_16 AC 523 ms
43,892 KB
testcase_17 AC 519 ms
43,860 KB
testcase_18 AC 518 ms
43,608 KB
testcase_19 AC 516 ms
43,612 KB
testcase_20 AC 523 ms
43,868 KB
testcase_21 AC 524 ms
43,860 KB
testcase_22 AC 521 ms
43,608 KB
testcase_23 AC 619 ms
43,860 KB
testcase_24 AC 615 ms
43,868 KB
testcase_25 AC 828 ms
43,608 KB
testcase_26 TLE -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
testcase_54 -- -
testcase_55 -- -
testcase_56 -- -
testcase_57 -- -
testcase_58 -- -
testcase_59 -- -
testcase_60 -- -
testcase_61 -- -
testcase_62 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools
import numpy as np

N, M = map(int, input().split())
A = np.array([list(map(int, input().split())) for _ in range(N)])


def make_table(t, slash, backslash):
    fancy = np.nonzero(t)
    table = A.copy()
    solved = 0

    solved += np.sum(table[fancy, :])
    table[fancy, :] = 0

    if slash:
        for i in range(N):
            solved += table[i, i]
            table[i, i] = 0
    if backslash:
        for i in range(N):
            solved += table[N - i - 1, i]
            table[N - i - 1, i] = 0

    return table, solved


ans = 100 * N * N

# 横と斜めは全列挙
for t in itertools.product((0, 1), repeat=N):
    row = t.count(1)
    if row > M:
        continue
    for slash, backslash in ((0, 0), (1, 0), (0, 1), (1, 1)):
        col = M - row - slash - backslash  # 削るべき列数
        if not 0 <= col <= N:
            continue
        table, solved = make_table(t, slash, backslash)

        # 縦のうれしい順に選ぶ
        additional_solved = np.sum(table, axis=0)
        additional_solved.sort()
        solved += sum(additional_solved[:col])
        ans = min(ans, solved)
print(ans)
0