結果

問題 No.1345 Beautiful BINGO
ユーザー H3PO4H3PO4
提出日時 2021-01-16 15:07:48
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,329 bytes
コンパイル時間 290 ms
コンパイル使用メモリ 82,116 KB
実行使用メモリ 160,628 KB
最終ジャッジ日時 2024-11-27 17:29:40
合計ジャッジ時間 50,709 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
58,880 KB
testcase_01 AC 47 ms
136,924 KB
testcase_02 AC 44 ms
59,136 KB
testcase_03 AC 46 ms
61,996 KB
testcase_04 AC 44 ms
59,136 KB
testcase_05 AC 114 ms
158,800 KB
testcase_06 AC 45 ms
59,392 KB
testcase_07 AC 144 ms
159,872 KB
testcase_08 AC 45 ms
59,264 KB
testcase_09 AC 44 ms
135,552 KB
testcase_10 AC 67 ms
72,960 KB
testcase_11 AC 71 ms
152,064 KB
testcase_12 AC 47 ms
59,648 KB
testcase_13 AC 143 ms
160,628 KB
testcase_14 AC 49 ms
60,416 KB
testcase_15 AC 45 ms
136,448 KB
testcase_16 AC 69 ms
73,216 KB
testcase_17 AC 48 ms
137,088 KB
testcase_18 AC 46 ms
59,008 KB
testcase_19 AC 49 ms
137,728 KB
testcase_20 AC 43 ms
59,264 KB
testcase_21 AC 44 ms
53,632 KB
testcase_22 AC 51 ms
60,416 KB
testcase_23 AC 76 ms
71,296 KB
testcase_24 AC 201 ms
77,668 KB
testcase_25 AC 324 ms
79,096 KB
testcase_26 AC 1,957 ms
81,024 KB
testcase_27 TLE -
testcase_28 AC 167 ms
77,804 KB
testcase_29 AC 1,973 ms
80,896 KB
testcase_30 AC 69 ms
67,968 KB
testcase_31 AC 208 ms
78,496 KB
testcase_32 AC 196 ms
78,004 KB
testcase_33 TLE -
testcase_34 AC 73 ms
72,064 KB
testcase_35 AC 109 ms
77,008 KB
testcase_36 TLE -
testcase_37 AC 74 ms
71,680 KB
testcase_38 AC 1,823 ms
82,804 KB
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 AC 45 ms
53,632 KB
testcase_43 AC 44 ms
53,888 KB
testcase_44 AC 55 ms
61,952 KB
testcase_45 AC 48 ms
55,168 KB
testcase_46 AC 45 ms
53,920 KB
testcase_47 AC 45 ms
53,888 KB
testcase_48 AC 44 ms
53,504 KB
testcase_49 AC 44 ms
53,888 KB
testcase_50 AC 44 ms
53,760 KB
testcase_51 AC 43 ms
53,760 KB
testcase_52 AC 121 ms
77,056 KB
testcase_53 TLE -
testcase_54 AC 1,381 ms
80,512 KB
testcase_55 TLE -
testcase_56 AC 119 ms
76,872 KB
testcase_57 TLE -
testcase_58 TLE -
testcase_59 TLE -
testcase_60 TLE -
testcase_61 TLE -
testcase_62 AC 93 ms
158,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools
from copy import deepcopy

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


def make_table(t, slash, backslash):
    table = deepcopy(A)
    solved = 0
    for y, b in enumerate(t):
        if b:
            for x in range(N):
                solved += table[y][x]
                table[y][x] = 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

# 横と斜めは全列挙
slash_pair = ((0, 0), (1, 0), (0, 1), (1, 1))
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 slash_pair:
        col = M - row - slash - backslash  # 削るべき列数
        if not 0 <= col <= N:
            continue
        table, solved = make_table(t, slash, backslash)

        additional_solved = [0] * N

        # 縦のうれしい順に選ぶ
        for i in range(N):
            additional_solved[i] = sum(table[j][i] for j in range(N))
        additional_solved.sort()
        solved += sum(additional_solved[:col])
        ans = min(ans, solved)
print(ans)
0