結果

問題 No.1345 Beautiful BINGO
ユーザー H3PO4H3PO4
提出日時 2021-01-16 13:59:39
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 1,148 bytes
コンパイル時間 875 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 87,496 KB
最終ジャッジ日時 2024-11-27 14:52:36
合計ジャッジ時間 75,112 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 450 ms
48,988 KB
testcase_01 AC 444 ms
87,088 KB
testcase_02 AC 443 ms
48,732 KB
testcase_03 AC 462 ms
87,496 KB
testcase_04 AC 440 ms
48,980 KB
testcase_05 AC 452 ms
87,368 KB
testcase_06 AC 440 ms
48,984 KB
testcase_07 AC 482 ms
87,236 KB
testcase_08 AC 437 ms
48,728 KB
testcase_09 AC 448 ms
87,116 KB
testcase_10 AC 441 ms
50,432 KB
testcase_11 AC 444 ms
48,860 KB
testcase_12 AC 442 ms
48,884 KB
testcase_13 AC 467 ms
86,988 KB
testcase_14 AC 436 ms
48,984 KB
testcase_15 AC 446 ms
87,344 KB
testcase_16 AC 441 ms
48,596 KB
testcase_17 AC 439 ms
86,696 KB
testcase_18 AC 446 ms
48,988 KB
testcase_19 AC 439 ms
87,216 KB
testcase_20 AC 439 ms
48,728 KB
testcase_21 AC 444 ms
43,864 KB
testcase_22 AC 451 ms
44,124 KB
testcase_23 AC 574 ms
43,884 KB
testcase_24 AC 521 ms
43,480 KB
testcase_25 AC 716 ms
43,608 KB
testcase_26 TLE -
testcase_27 TLE -
testcase_28 AC 487 ms
43,740 KB
testcase_29 TLE -
testcase_30 AC 459 ms
43,628 KB
testcase_31 AC 546 ms
43,380 KB
testcase_32 AC 517 ms
43,484 KB
testcase_33 TLE -
testcase_34 AC 454 ms
43,608 KB
testcase_35 AC 455 ms
43,736 KB
testcase_36 TLE -
testcase_37 AC 453 ms
43,352 KB
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 AC 436 ms
43,608 KB
testcase_43 AC 435 ms
43,632 KB
testcase_44 AC 441 ms
43,860 KB
testcase_45 AC 453 ms
43,348 KB
testcase_46 AC 477 ms
43,732 KB
testcase_47 AC 448 ms
43,740 KB
testcase_48 AC 447 ms
43,628 KB
testcase_49 AC 451 ms
43,484 KB
testcase_50 AC 453 ms
43,480 KB
testcase_51 AC 451 ms
43,348 KB
testcase_52 AC 472 ms
43,736 KB
testcase_53 TLE -
testcase_54 AC 1,890 ms
44,120 KB
testcase_55 TLE -
testcase_56 AC 483 ms
43,760 KB
testcase_57 TLE -
testcase_58 TLE -
testcase_59 TLE -
testcase_60 TLE -
testcase_61 TLE -
testcase_62 AC 471 ms
87,224 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 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