結果

問題 No.698 ペアでチームを作ろう
ユーザー convexineqconvexineq
提出日時 2021-03-30 03:35:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 57 ms / 1,000 ms
コード長 392 bytes
コンパイル時間 224 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 65,280 KB
最終ジャッジ日時 2024-11-29 23:40:48
合計ジャッジ時間 1,973 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
53,376 KB
testcase_01 AC 45 ms
53,504 KB
testcase_02 AC 42 ms
53,248 KB
testcase_03 AC 42 ms
53,376 KB
testcase_04 AC 51 ms
60,416 KB
testcase_05 AC 55 ms
63,872 KB
testcase_06 AC 53 ms
64,384 KB
testcase_07 AC 55 ms
64,768 KB
testcase_08 AC 56 ms
64,384 KB
testcase_09 AC 56 ms
64,640 KB
testcase_10 AC 56 ms
64,384 KB
testcase_11 AC 57 ms
65,280 KB
testcase_12 AC 56 ms
64,256 KB
testcase_13 AC 55 ms
64,384 KB
testcase_14 AC 56 ms
64,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
n = int(input())
*a, = map(int,input().split())
d = {2**n-1:0}
for _ in range(n//2):
    nd = defaultdict(int)
    for k,v in d.items():
        idx = (k&-k).bit_length() - 1
        k &= k-1
        for i in range(idx+1,n):
            if k>>i&1:
                nk = k^(1<<i)
                nd[nk] = max(nd[nk], v + (a[idx]^a[i]))
    d = nd
print(d[0])
0