結果

問題 No.1345 Beautiful BINGO
ユーザー chineristACchineristAC
提出日時 2021-01-16 13:29:13
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,282 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 87,332 KB
最終ジャッジ日時 2024-05-05 15:28:16
合計ジャッジ時間 15,695 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
58,112 KB
testcase_01 AC 45 ms
58,752 KB
testcase_02 AC 45 ms
59,264 KB
testcase_03 AC 40 ms
53,120 KB
testcase_04 AC 40 ms
52,224 KB
testcase_05 AC 57 ms
65,492 KB
testcase_06 AC 40 ms
52,480 KB
testcase_07 AC 103 ms
76,692 KB
testcase_08 AC 41 ms
52,096 KB
testcase_09 AC 41 ms
52,864 KB
testcase_10 AC 49 ms
61,056 KB
testcase_11 AC 58 ms
65,920 KB
testcase_12 AC 40 ms
52,608 KB
testcase_13 AC 103 ms
76,800 KB
testcase_14 AC 59 ms
63,488 KB
testcase_15 AC 42 ms
52,096 KB
testcase_16 AC 52 ms
60,928 KB
testcase_17 AC 45 ms
58,752 KB
testcase_18 AC 39 ms
52,676 KB
testcase_19 AC 45 ms
59,136 KB
testcase_20 AC 39 ms
52,224 KB
testcase_21 AC 43 ms
58,496 KB
testcase_22 AC 284 ms
79,028 KB
testcase_23 TLE -
testcase_24 AC 1,045 ms
79,316 KB
testcase_25 AC 217 ms
77,532 KB
testcase_26 AC 612 ms
78,468 KB
testcase_27 TLE -
testcase_28 AC 202 ms
77,784 KB
testcase_29 AC 607 ms
78,468 KB
testcase_30 AC 329 ms
77,796 KB
testcase_31 AC 292 ms
78,768 KB
testcase_32 AC 144 ms
78,056 KB
testcase_33 TLE -
testcase_34 AC 171 ms
78,780 KB
testcase_35 AC 169 ms
79,100 KB
testcase_36 TLE -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
testcase_54 -- -
testcase_55 -- -
testcase_56 -- -
testcase_57 -- -
testcase_58 -- -
testcase_59 -- -
testcase_60 -- -
testcase_61 -- -
testcase_62 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

S = [sum(A[i]) for i in range(N)]

tmp_A = [[A[i][j] for j in range(N)] for i in range(N)]

def dfs(i,cost,cnt):
    res = 10**18
    if i==N+2:
        column = [sum(tmp_A[k][j] for k in range(N)) for j in range(N)]
        column.sort()
        cost += sum(column[:cnt])
        return cost
    elif i<N:
        tmp1 = dfs(i+1,cost,cnt)
        for j in range(N):
            tmp_A[i][j] = 0
            cost += A[i][j]
        tmp2 = dfs(i+1,cost,cnt-1)
        for j in range(N):
            tmp_A[i][j] = A[i][j]
        return min(res,tmp1,tmp2)
    elif i==N:
        tmp1 = dfs(i+1,cost,cnt)
        memo = [tmp_A[j][j] for j in range(N)]
        for j in range(N):
            tmp_A[j][j] = 0
            cost += memo[j]
        tmp2 = dfs(i+1,cost,cnt-1)
        for j in range(N):
            tmp_A[j][j] = memo[j]
        return min(res,tmp1,tmp2)
    else:
        tmp1 = dfs(i+1,cost,cnt)
        memo = [tmp_A[N-1-j][j] for j in range(N)]
        for j in range(N):
            tmp_A[N-1-j][j] = 0
            cost += memo[j]
        tmp2 = dfs(i+1,cost,cnt-1)
        for j in range(N):
            tmp_A[N-1-j][j] = memo[j]
        return min(res,tmp1,tmp2)

print(dfs(0,0,M))
0