結果

問題 No.1345 Beautiful BINGO
ユーザー rlangevinrlangevin
提出日時 2023-03-03 08:56:55
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 991 bytes
コンパイル時間 296 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 77,312 KB
最終ジャッジ日時 2024-09-17 21:51:54
合計ジャッジ時間 35,621 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,840 KB
testcase_01 AC 34 ms
52,480 KB
testcase_02 AC 34 ms
52,096 KB
testcase_03 AC 36 ms
52,352 KB
testcase_04 AC 35 ms
52,224 KB
testcase_05 AC 69 ms
73,728 KB
testcase_06 AC 35 ms
52,224 KB
testcase_07 AC 78 ms
76,348 KB
testcase_08 AC 34 ms
51,840 KB
testcase_09 AC 33 ms
52,480 KB
testcase_10 AC 46 ms
63,360 KB
testcase_11 AC 68 ms
74,368 KB
testcase_12 AC 39 ms
51,968 KB
testcase_13 AC 82 ms
76,672 KB
testcase_14 AC 53 ms
64,512 KB
testcase_15 AC 36 ms
52,096 KB
testcase_16 AC 48 ms
64,512 KB
testcase_17 AC 34 ms
52,608 KB
testcase_18 AC 35 ms
52,096 KB
testcase_19 AC 39 ms
52,864 KB
testcase_20 AC 39 ms
51,840 KB
testcase_21 AC 41 ms
52,864 KB
testcase_22 AC 167 ms
76,532 KB
testcase_23 TLE -
testcase_24 AC 888 ms
76,784 KB
testcase_25 AC 113 ms
76,928 KB
testcase_26 AC 438 ms
76,416 KB
testcase_27 TLE -
testcase_28 AC 111 ms
76,316 KB
testcase_29 AC 433 ms
76,248 KB
testcase_30 AC 269 ms
76,416 KB
testcase_31 AC 166 ms
76,380 KB
testcase_32 AC 81 ms
76,612 KB
testcase_33 TLE -
testcase_34 AC 86 ms
76,156 KB
testcase_35 AC 87 ms
76,660 KB
testcase_36 AC 599 ms
76,424 KB
testcase_37 AC 62 ms
67,456 KB
testcase_38 AC 476 ms
76,416 KB
testcase_39 TLE -
testcase_40 AC 972 ms
77,056 KB
testcase_41 AC 469 ms
76,296 KB
testcase_42 AC 34 ms
52,224 KB
testcase_43 AC 34 ms
52,128 KB
testcase_44 AC 34 ms
52,864 KB
testcase_45 AC 36 ms
52,608 KB
testcase_46 AC 35 ms
52,608 KB
testcase_47 AC 34 ms
52,608 KB
testcase_48 AC 33 ms
52,352 KB
testcase_49 AC 34 ms
52,352 KB
testcase_50 AC 33 ms
51,968 KB
testcase_51 AC 36 ms
53,248 KB
testcase_52 AC 84 ms
76,544 KB
testcase_53 TLE -
testcase_54 TLE -
testcase_55 TLE -
testcase_56 AC 90 ms
76,416 KB
testcase_57 TLE -
testcase_58 TLE -
testcase_59 TLE -
testcase_60 AC 960 ms
76,544 KB
testcase_61 TLE -
testcase_62 AC 79 ms
75,916 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

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

print(ans)
0