結果

問題 No.1345 Beautiful BINGO
ユーザー H3PO4H3PO4
提出日時 2021-01-16 14:06:03
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 1,166 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 88,376 KB
最終ジャッジ日時 2024-11-27 15:04:30
合計ジャッジ時間 74,831 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 468 ms
49,500 KB
testcase_01 AC 456 ms
87,728 KB
testcase_02 AC 472 ms
49,364 KB
testcase_03 AC 465 ms
88,080 KB
testcase_04 AC 463 ms
49,560 KB
testcase_05 AC 472 ms
88,244 KB
testcase_06 AC 462 ms
49,756 KB
testcase_07 AC 494 ms
88,376 KB
testcase_08 AC 467 ms
49,500 KB
testcase_09 AC 449 ms
87,992 KB
testcase_10 AC 463 ms
49,368 KB
testcase_11 AC 456 ms
87,984 KB
testcase_12 AC 463 ms
49,492 KB
testcase_13 AC 497 ms
49,492 KB
testcase_14 AC 473 ms
49,244 KB
testcase_15 AC 464 ms
88,112 KB
testcase_16 AC 472 ms
49,372 KB
testcase_17 AC 457 ms
87,864 KB
testcase_18 AC 463 ms
49,496 KB
testcase_19 AC 455 ms
88,244 KB
testcase_20 AC 458 ms
49,500 KB
testcase_21 AC 460 ms
44,636 KB
testcase_22 AC 459 ms
44,636 KB
testcase_23 AC 497 ms
44,244 KB
testcase_24 AC 514 ms
44,244 KB
testcase_25 AC 733 ms
44,636 KB
testcase_26 TLE -
testcase_27 TLE -
testcase_28 AC 503 ms
44,120 KB
testcase_29 TLE -
testcase_30 AC 475 ms
43,868 KB
testcase_31 AC 532 ms
44,004 KB
testcase_32 AC 543 ms
44,116 KB
testcase_33 TLE -
testcase_34 AC 480 ms
44,252 KB
testcase_35 AC 494 ms
44,252 KB
testcase_36 TLE -
testcase_37 AC 485 ms
44,244 KB
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 AC 466 ms
44,000 KB
testcase_43 AC 476 ms
44,128 KB
testcase_44 AC 466 ms
43,864 KB
testcase_45 AC 457 ms
43,992 KB
testcase_46 AC 454 ms
44,252 KB
testcase_47 AC 474 ms
43,864 KB
testcase_48 AC 483 ms
43,996 KB
testcase_49 AC 470 ms
44,376 KB
testcase_50 AC 465 ms
44,120 KB
testcase_51 AC 464 ms
44,248 KB
testcase_52 AC 509 ms
43,864 KB
testcase_53 TLE -
testcase_54 AC 1,857 ms
44,376 KB
testcase_55 TLE -
testcase_56 AC 508 ms
44,120 KB
testcase_57 TLE -
testcase_58 TLE -
testcase_59 TLE -
testcase_60 TLE -
testcase_61 TLE -
testcase_62 AC 498 ms
88,244 KB
権限があれば一括ダウンロードができます

ソースコード

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 not M - N - 2 <= 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