結果

問題 No.1345 Beautiful BINGO
ユーザー convexineqconvexineq
提出日時 2021-01-16 23:46:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,830 ms / 2,000 ms
コード長 593 bytes
コンパイル時間 234 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 78,336 KB
最終ジャッジ日時 2024-12-25 13:59:04
合計ジャッジ時間 29,930 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 61
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
a = [list(map(int,input().split())) for _ in range(n)]

N = (1<<(n+2))
cnt = [0]*N
for i in range(n+2):
    for j in range(1<<i):
        cnt[j+(1<<i)] = cnt[j]+1
ans = 10**9
for mask in range(N):
    cm = cnt[mask]
    if cm > m: continue
    res = [0]*n
    val = 0
    for i in range(n):
        for j in range(n):
            if mask>>j&1 or (j == i and mask>>n&1) or (j == n-1-i and mask>>(n+1)&1):
                val += a[i][j]
            else:
                res[i] += a[i][j]
    res.sort()
    val += sum(res[:m-cm])
    ans = min(ans,val)
print(ans)
0