結果

問題 No.519 アイドルユニット
ユーザー tpynerivertpyneriver
提出日時 2020-12-13 18:32:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 144 ms / 1,000 ms
コード長 746 bytes
コンパイル時間 239 ms
コンパイル使用メモリ 82,092 KB
実行使用メモリ 84,340 KB
最終ジャッジ日時 2024-09-19 23:45:24
合計ジャッジ時間 3,703 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
84,112 KB
testcase_01 AC 138 ms
84,340 KB
testcase_02 AC 93 ms
77,888 KB
testcase_03 AC 62 ms
68,424 KB
testcase_04 AC 41 ms
54,592 KB
testcase_05 AC 40 ms
54,312 KB
testcase_06 AC 39 ms
55,348 KB
testcase_07 AC 44 ms
61,552 KB
testcase_08 AC 49 ms
64,800 KB
testcase_09 AC 55 ms
66,732 KB
testcase_10 AC 55 ms
67,840 KB
testcase_11 AC 60 ms
67,676 KB
testcase_12 AC 39 ms
54,640 KB
testcase_13 AC 60 ms
69,292 KB
testcase_14 AC 60 ms
68,620 KB
testcase_15 AC 58 ms
68,180 KB
testcase_16 AC 59 ms
69,552 KB
testcase_17 AC 60 ms
68,876 KB
testcase_18 AC 61 ms
68,536 KB
testcase_19 AC 60 ms
68,892 KB
testcase_20 AC 60 ms
68,256 KB
testcase_21 AC 62 ms
68,288 KB
testcase_22 AC 61 ms
68,996 KB
testcase_23 AC 60 ms
69,304 KB
testcase_24 AC 69 ms
71,040 KB
testcase_25 AC 68 ms
71,492 KB
testcase_26 AC 68 ms
72,144 KB
testcase_27 AC 69 ms
71,124 KB
testcase_28 AC 68 ms
70,868 KB
testcase_29 AC 144 ms
84,004 KB
testcase_30 AC 136 ms
83,876 KB
testcase_31 AC 144 ms
83,904 KB
testcase_32 AC 138 ms
84,292 KB
testcase_33 AC 39 ms
53,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline = sys.stdin.readline
from collections import Counter

def popcount(i):
    assert 0 <= i < 0x100000000
    i = i - ((i >> 1) & 0x55555555)
    i = (i & 0x33333333) + ((i >> 2) & 0x33333333)
    return (((i + (i >> 4) & 0xF0F0F0F) * 0x1010101) & 0xffffffff) >> 24

INF = 10**18
N = int(readline())
A = [list(map(int, readline().split())) for _ in range(N)]

dp = Counter()
dp[0] = -INF
for i in range(N):
    dpnew = Counter()
    for k, v in dp.items():
        if popcount(k) <= N-i-2:
            dpnew[k|(1<<i)] = max(dpnew[k|(1<<i)], dp[k])
        for j in range(N):
            if (1<<j) & k:
                key = k^(1<<j)
                dpnew[key] = max(dpnew[key], dp[k] + A[i][j])
    dp = dpnew.copy()
print(dp[0])
0