結果

問題 No.698 ペアでチームを作ろう
ユーザー みあえみあえ
提出日時 2024-04-01 01:01:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 146 ms / 1,000 ms
コード長 553 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 81,884 KB
実行使用メモリ 76,528 KB
最終ジャッジ日時 2024-09-30 21:33:06
合計ジャッジ時間 2,710 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,752 KB
testcase_01 AC 39 ms
52,264 KB
testcase_02 AC 61 ms
69,476 KB
testcase_03 AC 40 ms
53,092 KB
testcase_04 AC 80 ms
76,288 KB
testcase_05 AC 139 ms
75,792 KB
testcase_06 AC 146 ms
76,180 KB
testcase_07 AC 144 ms
76,364 KB
testcase_08 AC 145 ms
76,028 KB
testcase_09 AC 146 ms
76,528 KB
testcase_10 AC 145 ms
76,280 KB
testcase_11 AC 143 ms
76,024 KB
testcase_12 AC 142 ms
76,088 KB
testcase_13 AC 144 ms
75,884 KB
testcase_14 AC 142 ms
76,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import combinations


def solve(N, A):
    dp = [-float("inf")] * (1 << N)
    dp[0] = 0
    for V in range(1 << N):
        for i, j in combinations(range(N), 2):
            ai = A[i]
            aj = A[j]
            if not ((V >> i) & 1) and not ((V >> j) & 1):
                VV = V | (1 << i) | (1 << j)
                dp[VV] = max(dp[VV], dp[V] + (ai ^ aj))

    return dp[-1]


def main():
    N = int(input())
    A = list(map(int, input().split()))
    ans = solve(N, A)
    print(ans)


if __name__ == "__main__":
    main()
0