結果

問題 No.1345 Beautiful BINGO
ユーザー convexineqconvexineq
提出日時 2021-01-16 23:46:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,592 ms / 2,000 ms
コード長 593 bytes
コンパイル時間 376 ms
コンパイル使用メモリ 82,564 KB
実行使用メモリ 78,464 KB
最終ジャッジ日時 2024-12-02 10:32:48
合計ジャッジ時間 25,483 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,624 KB
testcase_01 AC 35 ms
52,460 KB
testcase_02 AC 35 ms
52,188 KB
testcase_03 AC 36 ms
52,616 KB
testcase_04 AC 36 ms
52,140 KB
testcase_05 AC 53 ms
66,088 KB
testcase_06 AC 37 ms
53,124 KB
testcase_07 AC 61 ms
67,772 KB
testcase_08 AC 36 ms
52,760 KB
testcase_09 AC 37 ms
52,556 KB
testcase_10 AC 45 ms
62,256 KB
testcase_11 AC 54 ms
65,908 KB
testcase_12 AC 37 ms
53,844 KB
testcase_13 AC 58 ms
68,196 KB
testcase_14 AC 43 ms
60,516 KB
testcase_15 AC 35 ms
52,376 KB
testcase_16 AC 44 ms
61,960 KB
testcase_17 AC 39 ms
53,564 KB
testcase_18 AC 39 ms
53,068 KB
testcase_19 AC 40 ms
53,080 KB
testcase_20 AC 39 ms
53,336 KB
testcase_21 AC 38 ms
54,552 KB
testcase_22 AC 111 ms
76,356 KB
testcase_23 AC 1,577 ms
77,988 KB
testcase_24 AC 628 ms
77,280 KB
testcase_25 AC 94 ms
76,212 KB
testcase_26 AC 314 ms
76,808 KB
testcase_27 AC 1,583 ms
78,216 KB
testcase_28 AC 94 ms
76,372 KB
testcase_29 AC 311 ms
76,692 KB
testcase_30 AC 198 ms
76,616 KB
testcase_31 AC 115 ms
76,564 KB
testcase_32 AC 71 ms
73,776 KB
testcase_33 AC 1,563 ms
78,464 KB
testcase_34 AC 74 ms
74,628 KB
testcase_35 AC 73 ms
73,724 KB
testcase_36 AC 440 ms
78,220 KB
testcase_37 AC 52 ms
64,164 KB
testcase_38 AC 316 ms
76,652 KB
testcase_39 AC 1,576 ms
78,292 KB
testcase_40 AC 626 ms
77,340 KB
testcase_41 AC 355 ms
77,244 KB
testcase_42 AC 37 ms
54,008 KB
testcase_43 AC 36 ms
53,144 KB
testcase_44 AC 37 ms
53,908 KB
testcase_45 AC 41 ms
54,396 KB
testcase_46 AC 36 ms
52,668 KB
testcase_47 AC 36 ms
52,820 KB
testcase_48 AC 35 ms
53,248 KB
testcase_49 AC 35 ms
53,056 KB
testcase_50 AC 36 ms
52,780 KB
testcase_51 AC 36 ms
53,636 KB
testcase_52 AC 58 ms
68,736 KB
testcase_53 AC 1,572 ms
78,124 KB
testcase_54 AC 1,592 ms
78,396 KB
testcase_55 AC 1,580 ms
78,400 KB
testcase_56 AC 62 ms
69,044 KB
testcase_57 AC 1,523 ms
78,240 KB
testcase_58 AC 1,579 ms
78,012 KB
testcase_59 AC 1,554 ms
78,380 KB
testcase_60 AC 690 ms
78,048 KB
testcase_61 AC 1,590 ms
78,460 KB
testcase_62 AC 51 ms
64,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
a = [list(map(int,input().split())) for _ in range(n)]

N = (1<<(n+2))
cnt = [0]*N
for i in range(n+2):
    for j in range(1<<i):
        cnt[j+(1<<i)] = cnt[j]+1
ans = 10**9
for mask in range(N):
    cm = cnt[mask]
    if cm > m: continue
    res = [0]*n
    val = 0
    for i in range(n):
        for j in range(n):
            if mask>>j&1 or (j == i and mask>>n&1) or (j == n-1-i and mask>>(n+1)&1):
                val += a[i][j]
            else:
                res[i] += a[i][j]
    res.sort()
    val += sum(res[:m-cm])
    ans = min(ans,val)
print(ans)
0