結果

問題 No.698 ペアでチームを作ろう
ユーザー tktk_snsntktk_snsn
提出日時 2021-01-25 10:19:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 77 ms / 1,000 ms
コード長 737 bytes
コンパイル時間 2,050 ms
コンパイル使用メモリ 82,092 KB
実行使用メモリ 74,464 KB
最終ジャッジ日時 2024-06-13 02:06:18
合計ジャッジ時間 2,152 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,408 KB
testcase_01 AC 36 ms
52,728 KB
testcase_02 AC 64 ms
65,244 KB
testcase_03 AC 37 ms
52,496 KB
testcase_04 AC 62 ms
68,916 KB
testcase_05 AC 74 ms
71,864 KB
testcase_06 AC 72 ms
73,176 KB
testcase_07 AC 66 ms
70,840 KB
testcase_08 AC 70 ms
71,496 KB
testcase_09 AC 77 ms
74,464 KB
testcase_10 AC 71 ms
71,856 KB
testcase_11 AC 70 ms
71,676 KB
testcase_12 AC 66 ms
71,488 KB
testcase_13 AC 64 ms
69,840 KB
testcase_14 AC 72 ms
72,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))


def pop_count(T):
    T = (T & 0x55555555) + ((T >> 1) & 0x55555555)
    T = (T & 0x33333333) + ((T >> 2) & 0x33333333)
    T = (T & 0x0F0F0F0F) + ((T >> 4) & 0x0F0F0F0F)
    T = (T & 0x00FF00FF) + ((T >> 8) & 0x00FF00FF)
    T = (T & 0x0000FFFF) + ((T >> 16) & 0x0000FFFF)
    return T


dp = [0] * (1 << N)
for S in range(1 << N):
    if pop_count(S) % 2 == 1:
        continue
    for i in range(N - 1):
        if ~(S >> i) & 1:
            for j in range(i + 1, N):
                if ~(S >> j) & 1:
                    U = S ^ (1 << i) ^ (1 << j)
                    if dp[U] < dp[S] + (A[i] ^ A[j]):
                        dp[U] = dp[S] + (A[i] ^ A[j])
print(dp[(1 << N)-1])
0