結果

問題 No.1345 Beautiful BINGO
ユーザー titiatitia
提出日時 2021-01-18 09:07:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,758 ms / 2,000 ms
コード長 959 bytes
コンパイル時間 850 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 76,960 KB
最終ジャッジ日時 2024-11-30 19:30:59
合計ジャッジ時間 21,105 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,308 KB
testcase_01 AC 36 ms
52,476 KB
testcase_02 AC 38 ms
52,824 KB
testcase_03 AC 36 ms
53,504 KB
testcase_04 AC 35 ms
52,440 KB
testcase_05 AC 54 ms
66,432 KB
testcase_06 AC 34 ms
52,560 KB
testcase_07 AC 80 ms
76,296 KB
testcase_08 AC 36 ms
53,228 KB
testcase_09 AC 36 ms
53,004 KB
testcase_10 AC 44 ms
61,268 KB
testcase_11 AC 48 ms
64,332 KB
testcase_12 AC 35 ms
53,012 KB
testcase_13 AC 80 ms
76,312 KB
testcase_14 AC 38 ms
52,628 KB
testcase_15 AC 36 ms
52,564 KB
testcase_16 AC 45 ms
61,872 KB
testcase_17 AC 36 ms
53,540 KB
testcase_18 AC 34 ms
53,016 KB
testcase_19 AC 36 ms
53,260 KB
testcase_20 AC 35 ms
52,484 KB
testcase_21 AC 32 ms
52,824 KB
testcase_22 AC 42 ms
61,744 KB
testcase_23 AC 90 ms
72,284 KB
testcase_24 AC 110 ms
76,128 KB
testcase_25 AC 103 ms
76,160 KB
testcase_26 AC 363 ms
76,036 KB
testcase_27 AC 1,747 ms
76,084 KB
testcase_28 AC 91 ms
76,288 KB
testcase_29 AC 298 ms
76,508 KB
testcase_30 AC 64 ms
69,560 KB
testcase_31 AC 90 ms
76,312 KB
testcase_32 AC 79 ms
75,980 KB
testcase_33 AC 1,749 ms
76,080 KB
testcase_34 AC 58 ms
68,512 KB
testcase_35 AC 80 ms
76,336 KB
testcase_36 AC 485 ms
76,092 KB
testcase_37 AC 47 ms
63,772 KB
testcase_38 AC 297 ms
76,312 KB
testcase_39 AC 1,732 ms
76,440 KB
testcase_40 AC 560 ms
76,124 KB
testcase_41 AC 324 ms
76,564 KB
testcase_42 AC 36 ms
52,264 KB
testcase_43 AC 34 ms
52,704 KB
testcase_44 AC 38 ms
52,948 KB
testcase_45 AC 38 ms
53,260 KB
testcase_46 AC 35 ms
52,284 KB
testcase_47 AC 34 ms
53,372 KB
testcase_48 AC 35 ms
52,332 KB
testcase_49 AC 35 ms
52,852 KB
testcase_50 AC 36 ms
54,204 KB
testcase_51 AC 34 ms
52,880 KB
testcase_52 AC 110 ms
75,952 KB
testcase_53 AC 1,758 ms
76,416 KB
testcase_54 AC 260 ms
76,960 KB
testcase_55 AC 587 ms
76,308 KB
testcase_56 AC 105 ms
75,756 KB
testcase_57 AC 1,679 ms
75,940 KB
testcase_58 AC 1,116 ms
76,132 KB
testcase_59 AC 1,713 ms
76,220 KB
testcase_60 AC 746 ms
76,092 KB
testcase_61 AC 779 ms
76,360 KB
testcase_62 AC 95 ms
75,588 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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

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*N)

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

    SCORE=0
    C=[]

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

    C.sort()

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

print(ANS)
    
            
            

    
        
0