結果

問題 No.1345 Beautiful BINGO
ユーザー rlangevinrlangevin
提出日時 2023-03-03 12:29:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,680 ms / 2,000 ms
コード長 1,049 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 82,108 KB
実行使用メモリ 76,872 KB
最終ジャッジ日時 2024-09-17 21:56:53
合計ジャッジ時間 20,697 ms
ジャッジサーバーID
(参考情報)
judge6 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,224 KB
testcase_01 AC 37 ms
57,472 KB
testcase_02 AC 33 ms
52,096 KB
testcase_03 AC 33 ms
52,480 KB
testcase_04 AC 31 ms
52,224 KB
testcase_05 AC 55 ms
71,552 KB
testcase_06 AC 32 ms
52,304 KB
testcase_07 AC 77 ms
76,160 KB
testcase_08 AC 32 ms
51,712 KB
testcase_09 AC 31 ms
52,352 KB
testcase_10 AC 47 ms
65,408 KB
testcase_11 AC 50 ms
66,560 KB
testcase_12 AC 34 ms
52,480 KB
testcase_13 AC 77 ms
76,232 KB
testcase_14 AC 36 ms
57,600 KB
testcase_15 AC 32 ms
52,480 KB
testcase_16 AC 56 ms
67,840 KB
testcase_17 AC 35 ms
57,600 KB
testcase_18 AC 33 ms
52,480 KB
testcase_19 AC 35 ms
57,600 KB
testcase_20 AC 31 ms
52,480 KB
testcase_21 AC 30 ms
52,352 KB
testcase_22 AC 40 ms
68,480 KB
testcase_23 AC 61 ms
75,520 KB
testcase_24 AC 89 ms
76,308 KB
testcase_25 AC 100 ms
76,544 KB
testcase_26 AC 377 ms
76,160 KB
testcase_27 AC 1,646 ms
76,556 KB
testcase_28 AC 83 ms
76,416 KB
testcase_29 AC 371 ms
76,684 KB
testcase_30 AC 62 ms
75,776 KB
testcase_31 AC 87 ms
76,416 KB
testcase_32 AC 94 ms
76,416 KB
testcase_33 AC 1,654 ms
76,544 KB
testcase_34 AC 59 ms
71,168 KB
testcase_35 AC 74 ms
76,032 KB
testcase_36 AC 472 ms
76,276 KB
testcase_37 AC 63 ms
73,088 KB
testcase_38 AC 388 ms
76,416 KB
testcase_39 AC 1,680 ms
76,560 KB
testcase_40 AC 733 ms
76,296 KB
testcase_41 AC 389 ms
76,544 KB
testcase_42 AC 32 ms
51,712 KB
testcase_43 AC 32 ms
52,480 KB
testcase_44 AC 36 ms
58,368 KB
testcase_45 AC 36 ms
57,344 KB
testcase_46 AC 32 ms
52,736 KB
testcase_47 AC 32 ms
52,536 KB
testcase_48 AC 31 ms
52,096 KB
testcase_49 AC 31 ms
51,940 KB
testcase_50 AC 31 ms
51,968 KB
testcase_51 AC 31 ms
51,968 KB
testcase_52 AC 82 ms
75,928 KB
testcase_53 AC 1,611 ms
76,592 KB
testcase_54 AC 241 ms
76,784 KB
testcase_55 AC 640 ms
76,860 KB
testcase_56 AC 84 ms
75,888 KB
testcase_57 AC 1,565 ms
76,872 KB
testcase_58 AC 1,351 ms
76,544 KB
testcase_59 AC 1,627 ms
76,544 KB
testcase_60 AC 733 ms
76,288 KB
testcase_61 AC 876 ms
76,288 KB
testcase_62 AC 78 ms
75,904 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