結果

問題 No.1345 Beautiful BINGO
ユーザー tktk_snsntktk_snsn
提出日時 2021-01-16 13:40:48
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,472 bytes
コンパイル時間 447 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 77,696 KB
最終ジャッジ日時 2024-11-27 14:14:24
合計ジャッジ時間 16,559 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,224 KB
testcase_01 AC 41 ms
52,480 KB
testcase_02 AC 41 ms
52,224 KB
testcase_03 AC 41 ms
52,352 KB
testcase_04 AC 41 ms
52,096 KB
testcase_05 WA -
testcase_06 AC 41 ms
52,224 KB
testcase_07 WA -
testcase_08 AC 40 ms
51,840 KB
testcase_09 AC 39 ms
52,224 KB
testcase_10 WA -
testcase_11 AC 48 ms
60,032 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 41 ms
52,352 KB
testcase_15 AC 39 ms
52,352 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 40 ms
52,224 KB
testcase_20 AC 39 ms
52,096 KB
testcase_21 AC 40 ms
52,352 KB
testcase_22 AC 46 ms
58,624 KB
testcase_23 AC 46 ms
58,880 KB
testcase_24 AC 89 ms
75,264 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 87 ms
74,112 KB
testcase_29 WA -
testcase_30 AC 57 ms
62,976 KB
testcase_31 AC 102 ms
76,416 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 57 ms
63,104 KB
testcase_35 AC 68 ms
66,944 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 AC 41 ms
51,968 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 AC 42 ms
52,736 KB
testcase_46 WA -
testcase_47 WA -
testcase_48 AC 40 ms
52,352 KB
testcase_49 AC 39 ms
52,224 KB
testcase_50 AC 40 ms
52,352 KB
testcase_51 AC 39 ms
51,840 KB
testcase_52 AC 858 ms
76,288 KB
testcase_53 WA -
testcase_54 AC 178 ms
76,800 KB
testcase_55 WA -
testcase_56 AC 845 ms
76,160 KB
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
testcase_60 WA -
testcase_61 WA -
testcase_62 AC 847 ms
76,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.buffer.readline
sys.setrecursionlimit(10 ** 7)


def pop_count(T):
    T = (T & 0x55555555) + ((T >> 1) & 0x55555555)
    T = (T & 0x33333333) + ((T >> 2) & 0x33333333)
    T = (T & 0x0F0F0F0F) + ((T >> 4) & 0x0F0F0F0F)
    T = (T & 0x00FF00FF) + ((T >> 8) & 0x00FF00FF)
    T = (T & 0x0000FFFF) + ((T >> 16) & 0x0000FFFF)
    return T


N, M = map(int, input().split())
A = tuple(tuple(map(int, input().split())) for _ in range(N))
row = [sum(a) for a in A]
col = [sum(a) for a in zip(*A)]
# row += [sum(A[i][i] for i in range(N))]
# row += [sum(A[N-i-1][i] for i in range(N))]


ans = 10**18
n = N + 2
for S in range(1 << n):
    p = pop_count(S)
    if N + p < M:
        continue
    tmp = 0
    coltmp = col[:]
    for i in range(N):
        if (S >> i) & 1:
            tmp += row[i]
            for j in range(N):
                coltmp[j] -= A[i][j]
    if (S >> N) & 1:
        for i in range(N):
            if (S >> i) & 1:
                continue
            tmp += A[i][i]
            coltmp[i] -= A[i][i]
    if (S >> (N + 1)) & 1:
        for i in range(N):
            if (S >> i) & 1:
                continue
            tmp += A[i][N-i-1]
            coltmp[i] -= A[i][N-i-1]
    if N % 2 == 1:
        m = N // 2
        if ~(S >> m) & 1 and (S >> N) & 1 and (S >> (N + 1)) & 1:
            tmp -= A[m][m]
            coltmp[m] += A[m][m]

    coltmp.sort()
    tmp += sum(coltmp[:M-p])
    ans = min(ans, tmp)

print(ans)
0