結果

問題 No.1345 Beautiful BINGO
ユーザー titiatitia
提出日時 2021-01-18 08:46:53
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 953 bytes
コンパイル時間 358 ms
コンパイル使用メモリ 81,864 KB
実行使用メモリ 77,292 KB
最終ジャッジ日時 2024-11-30 18:58:24
合計ジャッジ時間 27,559 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,704 KB
testcase_01 AC 40 ms
53,228 KB
testcase_02 AC 41 ms
52,612 KB
testcase_03 AC 40 ms
52,928 KB
testcase_04 AC 39 ms
52,824 KB
testcase_05 AC 60 ms
67,144 KB
testcase_06 AC 39 ms
52,136 KB
testcase_07 AC 90 ms
76,376 KB
testcase_08 AC 39 ms
53,852 KB
testcase_09 AC 39 ms
53,108 KB
testcase_10 AC 49 ms
60,852 KB
testcase_11 AC 55 ms
64,240 KB
testcase_12 AC 39 ms
52,940 KB
testcase_13 AC 88 ms
76,292 KB
testcase_14 AC 41 ms
53,104 KB
testcase_15 AC 39 ms
52,628 KB
testcase_16 AC 50 ms
62,252 KB
testcase_17 AC 40 ms
53,364 KB
testcase_18 AC 39 ms
52,876 KB
testcase_19 AC 41 ms
53,136 KB
testcase_20 AC 39 ms
52,356 KB
testcase_21 AC 39 ms
51,872 KB
testcase_22 AC 49 ms
61,860 KB
testcase_23 AC 99 ms
73,440 KB
testcase_24 AC 117 ms
76,188 KB
testcase_25 AC 120 ms
76,624 KB
testcase_26 AC 486 ms
76,264 KB
testcase_27 TLE -
testcase_28 AC 104 ms
76,456 KB
testcase_29 AC 438 ms
76,056 KB
testcase_30 AC 71 ms
70,080 KB
testcase_31 AC 104 ms
76,484 KB
testcase_32 AC 90 ms
76,228 KB
testcase_33 TLE -
testcase_34 AC 66 ms
68,280 KB
testcase_35 AC 88 ms
76,400 KB
testcase_36 AC 640 ms
76,728 KB
testcase_37 AC 56 ms
64,568 KB
testcase_38 AC 416 ms
76,872 KB
testcase_39 TLE -
testcase_40 AC 849 ms
76,592 KB
testcase_41 AC 460 ms
76,676 KB
testcase_42 AC 39 ms
53,012 KB
testcase_43 AC 39 ms
52,868 KB
testcase_44 AC 40 ms
52,876 KB
testcase_45 AC 41 ms
54,608 KB
testcase_46 AC 38 ms
52,400 KB
testcase_47 AC 39 ms
52,492 KB
testcase_48 AC 40 ms
52,456 KB
testcase_49 AC 38 ms
52,556 KB
testcase_50 AC 39 ms
52,884 KB
testcase_51 AC 39 ms
52,120 KB
testcase_52 AC 114 ms
76,388 KB
testcase_53 TLE -
testcase_54 AC 364 ms
76,312 KB
testcase_55 AC 861 ms
77,292 KB
testcase_56 AC 114 ms
75,848 KB
testcase_57 TLE -
testcase_58 AC 1,747 ms
76,860 KB
testcase_59 TLE -
testcase_60 AC 1,011 ms
76,260 KB
testcase_61 AC 1,189 ms
76,924 KB
testcase_62 AC 105 ms
76,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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

ANS=1<<30
for i in range(1<<(N+2)):
    
    x=0
    for j in range(N+2):
        if (1<<j) & i !=0:
            x+=1

    r=M-x

    if r<0 or r>N:
        continue

    B=[[0]*N for j in range(N)]

    for j in range(N+2):
        if (1<<j) & i != 0:
            if j<N:
                for k in range(N):
                    B[k][j]=1
            elif j==N:
                for k in range(N):
                    B[k][k]=1
            else:
                for k in range(N):
                    B[k][N-k-1]=1

    SCORE=0
    C=[]

    for j in range(N):
        sc=0
        for k in range(N):
            if B[j][k]==1:
                SCORE+=A[j][k]
            else:
                sc+=A[j][k]
        C.append(sc)

    C.sort()

    ANS=min(ANS,SCORE+sum(C[:r]))

print(ANS)
    
            
            

    
        
0