結果

問題 No.1345 Beautiful BINGO
ユーザー rlangevinrlangevin
提出日時 2023-03-03 08:58:54
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,036 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 77,184 KB
最終ジャッジ日時 2024-12-30 05:19:54
合計ジャッジ時間 33,614 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
51,968 KB
testcase_01 AC 49 ms
57,472 KB
testcase_02 AC 44 ms
52,352 KB
testcase_03 AC 44 ms
52,352 KB
testcase_04 AC 46 ms
51,968 KB
testcase_05 AC 83 ms
70,912 KB
testcase_06 AC 47 ms
52,352 KB
testcase_07 AC 112 ms
76,800 KB
testcase_08 AC 48 ms
51,840 KB
testcase_09 AC 47 ms
52,352 KB
testcase_10 AC 69 ms
65,152 KB
testcase_11 AC 85 ms
70,912 KB
testcase_12 AC 46 ms
52,480 KB
testcase_13 AC 113 ms
76,416 KB
testcase_14 AC 74 ms
66,432 KB
testcase_15 AC 45 ms
52,224 KB
testcase_16 AC 76 ms
68,352 KB
testcase_17 AC 51 ms
57,600 KB
testcase_18 AC 47 ms
52,352 KB
testcase_19 AC 51 ms
57,728 KB
testcase_20 AC 45 ms
51,968 KB
testcase_21 AC 53 ms
58,240 KB
testcase_22 AC 179 ms
76,288 KB
testcase_23 TLE -
testcase_24 AC 924 ms
76,288 KB
testcase_25 AC 149 ms
76,416 KB
testcase_26 AC 477 ms
76,160 KB
testcase_27 TLE -
testcase_28 AC 146 ms
76,416 KB
testcase_29 AC 473 ms
76,288 KB
testcase_30 AC 278 ms
76,288 KB
testcase_31 AC 183 ms
76,416 KB
testcase_32 AC 115 ms
76,544 KB
testcase_33 TLE -
testcase_34 AC 121 ms
76,288 KB
testcase_35 AC 122 ms
76,160 KB
testcase_36 AC 606 ms
76,416 KB
testcase_37 AC 85 ms
72,576 KB
testcase_38 AC 479 ms
76,288 KB
testcase_39 TLE -
testcase_40 AC 919 ms
76,800 KB
testcase_41 AC 492 ms
76,800 KB
testcase_42 AC 46 ms
51,968 KB
testcase_43 AC 48 ms
52,224 KB
testcase_44 AC 53 ms
58,368 KB
testcase_45 AC 51 ms
57,728 KB
testcase_46 AC 44 ms
51,968 KB
testcase_47 AC 44 ms
52,096 KB
testcase_48 AC 46 ms
52,224 KB
testcase_49 AC 44 ms
52,096 KB
testcase_50 AC 47 ms
52,096 KB
testcase_51 AC 52 ms
58,240 KB
testcase_52 AC 123 ms
76,160 KB
testcase_53 TLE -
testcase_54 TLE -
testcase_55 TLE -
testcase_56 AC 123 ms
76,032 KB
testcase_57 AC 1,980 ms
76,544 KB
testcase_58 TLE -
testcase_59 TLE -
testcase_60 AC 916 ms
76,416 KB
testcase_61 TLE -
testcase_62 AC 110 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:
        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