結果

問題 No.698 ペアでチームを作ろう
ユーザー lloyzlloyz
提出日時 2022-10-12 00:05:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 72 ms / 1,000 ms
コード長 564 bytes
コンパイル時間 411 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 74,752 KB
最終ジャッジ日時 2024-06-25 18:43:31
合計ジャッジ時間 1,803 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,840 KB
testcase_01 AC 39 ms
52,352 KB
testcase_02 AC 66 ms
66,688 KB
testcase_03 AC 40 ms
51,968 KB
testcase_04 AC 65 ms
67,840 KB
testcase_05 AC 68 ms
72,832 KB
testcase_06 AC 69 ms
73,728 KB
testcase_07 AC 71 ms
74,752 KB
testcase_08 AC 70 ms
74,496 KB
testcase_09 AC 70 ms
74,232 KB
testcase_10 AC 72 ms
73,984 KB
testcase_11 AC 70 ms
73,984 KB
testcase_12 AC 70 ms
74,384 KB
testcase_13 AC 71 ms
73,984 KB
testcase_14 AC 71 ms
73,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

DP = [0 for _ in range(1 << n)]
for bit in range(1, 1 << n):
    L = []
    for i in range(n):
        if (bit >> i) & 1:
            L.append(i)
    if len(L) % 2 == 1:
        continue
    if len(L) == 2:
        i, j = L[0], L[1]
        DP[bit] = A[i] ^ A[j]
    else:
        for x in range(len(L)):
            for y in range(x + 1, len(L)):
                i, j = L[x], L[y]
                rbit = (1 << i) + (1 << j)
                DP[bit] = max(DP[bit], DP[bit - rbit] + (A[i] ^ A[j]))
print(DP[-1])
0