結果

問題 No.1345 Beautiful BINGO
ユーザー rlangevinrlangevin
提出日時 2023-03-03 12:29:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,919 ms / 2,000 ms
コード長 1,049 bytes
コンパイル時間 538 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 76,800 KB
最終ジャッジ日時 2024-12-07 16:25:40
合計ジャッジ時間 24,115 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,224 KB
testcase_01 AC 44 ms
57,600 KB
testcase_02 AC 40 ms
52,096 KB
testcase_03 AC 40 ms
52,352 KB
testcase_04 AC 44 ms
51,840 KB
testcase_05 AC 83 ms
71,680 KB
testcase_06 AC 44 ms
52,224 KB
testcase_07 AC 109 ms
76,528 KB
testcase_08 AC 42 ms
51,712 KB
testcase_09 AC 40 ms
52,224 KB
testcase_10 AC 62 ms
65,280 KB
testcase_11 AC 65 ms
66,304 KB
testcase_12 AC 41 ms
51,968 KB
testcase_13 AC 102 ms
76,160 KB
testcase_14 AC 45 ms
57,600 KB
testcase_15 AC 43 ms
52,096 KB
testcase_16 AC 75 ms
67,968 KB
testcase_17 AC 49 ms
57,472 KB
testcase_18 AC 43 ms
52,096 KB
testcase_19 AC 49 ms
57,472 KB
testcase_20 AC 44 ms
51,968 KB
testcase_21 AC 44 ms
51,968 KB
testcase_22 AC 55 ms
68,736 KB
testcase_23 AC 83 ms
75,136 KB
testcase_24 AC 116 ms
76,416 KB
testcase_25 AC 131 ms
76,672 KB
testcase_26 AC 440 ms
76,160 KB
testcase_27 AC 1,888 ms
76,672 KB
testcase_28 AC 108 ms
76,288 KB
testcase_29 AC 435 ms
76,032 KB
testcase_30 AC 77 ms
75,904 KB
testcase_31 AC 108 ms
76,288 KB
testcase_32 AC 105 ms
76,416 KB
testcase_33 AC 1,898 ms
76,416 KB
testcase_34 AC 76 ms
71,040 KB
testcase_35 AC 92 ms
76,160 KB
testcase_36 AC 562 ms
76,672 KB
testcase_37 AC 85 ms
72,448 KB
testcase_38 AC 437 ms
76,672 KB
testcase_39 AC 1,919 ms
76,544 KB
testcase_40 AC 862 ms
76,672 KB
testcase_41 AC 461 ms
76,544 KB
testcase_42 AC 42 ms
51,968 KB
testcase_43 AC 42 ms
52,096 KB
testcase_44 AC 47 ms
58,112 KB
testcase_45 AC 47 ms
57,472 KB
testcase_46 AC 41 ms
51,840 KB
testcase_47 AC 41 ms
52,096 KB
testcase_48 AC 41 ms
51,968 KB
testcase_49 AC 41 ms
52,096 KB
testcase_50 AC 40 ms
51,968 KB
testcase_51 AC 41 ms
51,968 KB
testcase_52 AC 114 ms
76,032 KB
testcase_53 AC 1,897 ms
76,160 KB
testcase_54 AC 308 ms
76,416 KB
testcase_55 AC 742 ms
76,800 KB
testcase_56 AC 118 ms
76,032 KB
testcase_57 AC 1,814 ms
76,544 KB
testcase_58 AC 1,576 ms
76,672 KB
testcase_59 AC 1,887 ms
76,800 KB
testcase_60 AC 845 ms
76,544 KB
testcase_61 AC 1,020 ms
76,544 KB
testcase_62 AC 96 ms
75,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def popcount(n):
    cnt = 0
    while n:
        cnt += n & 1
        n >>= 1
    return cnt

def f(i, j):
    return i * N + j

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

ans = 10 ** 18
for s in range(1 << (N + 2)):
    c = popcount(s)
    if c > M or c + N < M:
        continue
    seen = [0] * (N * N)
    cnt = 0
    for i in range(N):
        for j in range(N):
            if (s >> i) & 1:
                seen[f(i, j)] = 1
                cnt += A[f(i, j)]
                continue
            if (s >> N) & 1 and i == j:
                seen[f(i, j)] = 1
                cnt += A[f(i, j)]
                continue
            if (s >> (N + 1)) & 1 and i + j == N - 1:
                seen[f(i, j)] = 1
                cnt += A[f(i, j)]
                continue
    L = [0] * N
    for i in range(N):
        for j in range(N):
            if seen[f(i, j)]:
                continue
            L[j] += A[f(i, j)]
    L.sort()
    ans = min(ans, cnt + sum(L[:M-c]))

print(ans)
0