結果

問題 No.1345 Beautiful BINGO
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-01-16 17:41:06
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 925 bytes
コンパイル時間 512 ms
コンパイル使用メモリ 82,172 KB
実行使用メモリ 78,804 KB
最終ジャッジ日時 2024-12-02 18:04:36
合計ジャッジ時間 47,019 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,992 KB
testcase_01 AC 40 ms
53,376 KB
testcase_02 AC 41 ms
53,504 KB
testcase_03 AC 39 ms
52,480 KB
testcase_04 AC 42 ms
52,480 KB
testcase_05 AC 63 ms
68,800 KB
testcase_06 AC 39 ms
52,224 KB
testcase_07 AC 93 ms
76,252 KB
testcase_08 AC 40 ms
51,840 KB
testcase_09 AC 39 ms
52,608 KB
testcase_10 AC 51 ms
62,464 KB
testcase_11 AC 69 ms
70,524 KB
testcase_12 AC 40 ms
52,352 KB
testcase_13 AC 94 ms
76,252 KB
testcase_14 AC 52 ms
62,336 KB
testcase_15 AC 40 ms
52,480 KB
testcase_16 AC 51 ms
62,320 KB
testcase_17 AC 41 ms
52,992 KB
testcase_18 AC 39 ms
52,224 KB
testcase_19 AC 41 ms
52,736 KB
testcase_20 AC 39 ms
51,840 KB
testcase_21 AC 40 ms
53,248 KB
testcase_22 AC 183 ms
76,208 KB
testcase_23 TLE -
testcase_24 AC 1,145 ms
77,440 KB
testcase_25 AC 146 ms
76,160 KB
testcase_26 AC 564 ms
76,416 KB
testcase_27 TLE -
testcase_28 AC 158 ms
76,564 KB
testcase_29 AC 562 ms
76,416 KB
testcase_30 AC 332 ms
76,984 KB
testcase_31 AC 214 ms
77,116 KB
testcase_32 AC 100 ms
76,472 KB
testcase_33 TLE -
testcase_34 AC 135 ms
77,056 KB
testcase_35 AC 139 ms
76,972 KB
testcase_36 TLE -
testcase_37 AC 109 ms
76,680 KB
testcase_38 AC 558 ms
76,628 KB
testcase_39 TLE -
testcase_40 AC 1,090 ms
76,928 KB
testcase_41 AC 1,099 ms
76,920 KB
testcase_42 AC 37 ms
52,480 KB
testcase_43 AC 39 ms
52,096 KB
testcase_44 AC 41 ms
52,992 KB
testcase_45 AC 41 ms
52,992 KB
testcase_46 AC 38 ms
52,352 KB
testcase_47 AC 39 ms
52,352 KB
testcase_48 AC 40 ms
52,224 KB
testcase_49 AC 39 ms
52,352 KB
testcase_50 AC 40 ms
52,480 KB
testcase_51 AC 40 ms
53,120 KB
testcase_52 TLE -
testcase_53 TLE -
testcase_54 TLE -
testcase_55 TLE -
testcase_56 TLE -
testcase_57 TLE -
testcase_58 TLE -
testcase_59 TLE -
testcase_60 TLE -
testcase_61 TLE -
testcase_62 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ans = 10**10
for i in range(1<<(n+2)):

    s = [[1]*n for i in range(n)]
    count = 0
    c = 0
    for j in range(n+2):
        if i >> j & 1:
            c += 1
            if j == n:
                for k in range(n):
                    count += A[k][k]*s[k][k]
                    s[k][k] = 0
            elif j == n+1:
                for k in range(n):
                    count += A[k][-1-k]*s[k][-1-k]
                    s[k][-1-k] = 0
            else:
                for k in range(n):
                    count += A[k][j]*s[k][j]
                    s[k][j] = 0
    l = []
    for i in range(n):
        l.append(sum([A[i][j]*s[i][j] for j in range(n)]))
    l.sort()
    now = 0
    if c+n < m:
        continue
    while c < m:
        c += 1
        count += l[now]
        now += 1
    ans = min(ans,count)

print(ans)
0