結果

問題 No.1345 Beautiful BINGO
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-01-16 17:41:06
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 925 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 78,592 KB
最終ジャッジ日時 2024-05-05 20:55:36
合計ジャッジ時間 40,024 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,736 KB
testcase_01 AC 41 ms
52,992 KB
testcase_02 AC 42 ms
53,120 KB
testcase_03 AC 37 ms
52,224 KB
testcase_04 AC 38 ms
52,096 KB
testcase_05 AC 63 ms
69,300 KB
testcase_06 AC 37 ms
52,480 KB
testcase_07 AC 93 ms
76,672 KB
testcase_08 AC 39 ms
52,608 KB
testcase_09 AC 38 ms
52,992 KB
testcase_10 AC 51 ms
62,080 KB
testcase_11 AC 66 ms
70,912 KB
testcase_12 AC 37 ms
52,480 KB
testcase_13 AC 90 ms
76,316 KB
testcase_14 AC 51 ms
62,592 KB
testcase_15 AC 39 ms
51,840 KB
testcase_16 AC 51 ms
62,720 KB
testcase_17 AC 40 ms
53,248 KB
testcase_18 AC 37 ms
51,968 KB
testcase_19 AC 39 ms
52,736 KB
testcase_20 AC 37 ms
52,352 KB
testcase_21 AC 40 ms
53,248 KB
testcase_22 AC 173 ms
76,432 KB
testcase_23 AC 1,969 ms
77,824 KB
testcase_24 AC 961 ms
77,404 KB
testcase_25 AC 126 ms
76,544 KB
testcase_26 AC 499 ms
76,920 KB
testcase_27 TLE -
testcase_28 AC 150 ms
76,848 KB
testcase_29 AC 478 ms
76,664 KB
testcase_30 AC 300 ms
76,928 KB
testcase_31 AC 194 ms
76,912 KB
testcase_32 AC 94 ms
76,704 KB
testcase_33 AC 1,935 ms
78,336 KB
testcase_34 AC 130 ms
76,928 KB
testcase_35 AC 131 ms
76,672 KB
testcase_36 AC 1,936 ms
78,208 KB
testcase_37 AC 106 ms
76,452 KB
testcase_38 AC 486 ms
76,600 KB
testcase_39 AC 1,958 ms
77,952 KB
testcase_40 AC 948 ms
76,912 KB
testcase_41 AC 957 ms
76,800 KB
testcase_42 AC 39 ms
52,224 KB
testcase_43 AC 38 ms
52,352 KB
testcase_44 AC 41 ms
52,864 KB
testcase_45 AC 39 ms
53,248 KB
testcase_46 AC 38 ms
51,968 KB
testcase_47 AC 38 ms
52,224 KB
testcase_48 AC 37 ms
52,992 KB
testcase_49 AC 37 ms
52,608 KB
testcase_50 AC 38 ms
52,480 KB
testcase_51 AC 40 ms
52,864 KB
testcase_52 AC 1,872 ms
77,568 KB
testcase_53 AC 1,879 ms
78,080 KB
testcase_54 AC 1,930 ms
78,592 KB
testcase_55 AC 1,938 ms
78,208 KB
testcase_56 AC 1,908 ms
78,080 KB
testcase_57 TLE -
testcase_58 AC 1,980 ms
78,336 KB
testcase_59 AC 1,899 ms
77,952 KB
testcase_60 AC 1,895 ms
78,208 KB
testcase_61 TLE -
testcase_62 AC 1,890 ms
77,952 KB
権限があれば一括ダウンロードができます

ソースコード

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