結果

問題 No.1345 Beautiful BINGO
ユーザー chineristACchineristAC
提出日時 2021-01-16 13:23:00
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 762 bytes
コンパイル時間 1,340 ms
コンパイル使用メモリ 81,780 KB
実行使用メモリ 76,884 KB
最終ジャッジ日時 2024-05-05 15:21:43
合計ジャッジ時間 6,062 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
60,212 KB
testcase_01 AC 44 ms
60,276 KB
testcase_02 AC 43 ms
59,480 KB
testcase_03 AC 38 ms
52,816 KB
testcase_04 AC 38 ms
52,744 KB
testcase_05 AC 81 ms
76,236 KB
testcase_06 AC 37 ms
52,616 KB
testcase_07 AC 129 ms
76,616 KB
testcase_08 AC 38 ms
52,640 KB
testcase_09 AC 39 ms
53,112 KB
testcase_10 AC 52 ms
64,072 KB
testcase_11 AC 80 ms
76,612 KB
testcase_12 AC 39 ms
52,816 KB
testcase_13 AC 129 ms
76,656 KB
testcase_14 AC 55 ms
65,008 KB
testcase_15 AC 38 ms
53,496 KB
testcase_16 AC 53 ms
64,080 KB
testcase_17 AC 43 ms
59,416 KB
testcase_18 AC 37 ms
53,432 KB
testcase_19 AC 43 ms
60,512 KB
testcase_20 AC 38 ms
52,460 KB
testcase_21 AC 43 ms
58,760 KB
testcase_22 AC 285 ms
76,884 KB
testcase_23 TLE -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
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 #

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

S = [sum(A[i]) for i in range(N)]

res = 10**18
for i in range(2**(N+2)):
    tmp_A = [[A[j][k] * (not i>>j & 1) for k in range(N)] for j in range(N)]
    cost = 0
    cnt = M
    for j in range(N):
        if i>>j & 1:
            cost += S[j]
            cnt -= 1
    if i>>(N) & 1:
        for k in range(N):
            cost += tmp_A[k][k]
            tmp_A[k][k] = 0
        cnt -= 1
    if i>>(N+1) & 1:
        for k in range(N):
            cost += tmp_A[N-1-k][k]
            tmp_A[N-1-k][k] = 0
        cnt -= 1

    column = [sum(tmp_A[k][j] for k in range(N)) for j in range(N)]
    column.sort()
    cost += sum(column[:cnt])
    res = min(res,cost)

print(res)
0