結果

問題 No.1345 Beautiful BINGO
ユーザー titiatitia
提出日時 2021-01-18 08:46:53
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 953 bytes
コンパイル時間 431 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 77,512 KB
最終ジャッジ日時 2024-05-07 22:14:58
合計ジャッジ時間 28,110 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,224 KB
testcase_01 AC 40 ms
52,352 KB
testcase_02 AC 39 ms
52,096 KB
testcase_03 AC 39 ms
52,480 KB
testcase_04 AC 39 ms
52,224 KB
testcase_05 AC 64 ms
66,304 KB
testcase_06 AC 39 ms
52,096 KB
testcase_07 AC 89 ms
76,492 KB
testcase_08 AC 40 ms
52,224 KB
testcase_09 AC 40 ms
51,840 KB
testcase_10 AC 48 ms
60,672 KB
testcase_11 AC 56 ms
63,744 KB
testcase_12 AC 39 ms
52,352 KB
testcase_13 AC 90 ms
76,288 KB
testcase_14 AC 39 ms
52,352 KB
testcase_15 AC 40 ms
52,096 KB
testcase_16 AC 50 ms
61,696 KB
testcase_17 AC 41 ms
52,864 KB
testcase_18 AC 40 ms
51,968 KB
testcase_19 AC 40 ms
52,608 KB
testcase_20 AC 40 ms
52,224 KB
testcase_21 AC 39 ms
51,840 KB
testcase_22 AC 48 ms
60,416 KB
testcase_23 AC 99 ms
72,192 KB
testcase_24 AC 120 ms
76,288 KB
testcase_25 AC 121 ms
76,268 KB
testcase_26 AC 488 ms
76,672 KB
testcase_27 TLE -
testcase_28 AC 104 ms
76,584 KB
testcase_29 AC 444 ms
76,380 KB
testcase_30 AC 75 ms
68,992 KB
testcase_31 AC 104 ms
76,568 KB
testcase_32 AC 90 ms
76,672 KB
testcase_33 TLE -
testcase_34 AC 66 ms
68,352 KB
testcase_35 AC 92 ms
76,416 KB
testcase_36 AC 647 ms
76,416 KB
testcase_37 AC 57 ms
63,360 KB
testcase_38 AC 430 ms
76,672 KB
testcase_39 TLE -
testcase_40 AC 856 ms
76,416 KB
testcase_41 AC 463 ms
76,160 KB
testcase_42 AC 39 ms
51,840 KB
testcase_43 AC 39 ms
51,968 KB
testcase_44 AC 40 ms
52,864 KB
testcase_45 AC 42 ms
52,480 KB
testcase_46 AC 39 ms
52,096 KB
testcase_47 AC 41 ms
52,224 KB
testcase_48 AC 40 ms
52,352 KB
testcase_49 AC 39 ms
51,840 KB
testcase_50 AC 38 ms
52,352 KB
testcase_51 AC 39 ms
51,968 KB
testcase_52 AC 116 ms
76,288 KB
testcase_53 TLE -
testcase_54 AC 364 ms
76,720 KB
testcase_55 AC 866 ms
76,976 KB
testcase_56 AC 116 ms
76,288 KB
testcase_57 TLE -
testcase_58 AC 1,759 ms
76,732 KB
testcase_59 TLE -
testcase_60 AC 1,028 ms
76,324 KB
testcase_61 AC 1,202 ms
76,448 KB
testcase_62 AC 106 ms
75,904 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