結果

問題 No.698 ペアでチームを作ろう
ユーザー ptotqptotq
提出日時 2020-03-24 22:29:40
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 487 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,776 KB
最終ジャッジ日時 2024-06-10 09:25:35
合計ジャッジ時間 10,890 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,752 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 57 ms
10,880 KB
testcase_03 AC 29 ms
10,880 KB
testcase_04 AC 214 ms
11,264 KB
testcase_05 AC 930 ms
11,264 KB
testcase_06 AC 934 ms
11,264 KB
testcase_07 TLE -
testcase_08 AC 988 ms
11,776 KB
testcase_09 AC 976 ms
11,776 KB
testcase_10 AC 976 ms
11,648 KB
testcase_11 AC 967 ms
11,648 KB
testcase_12 AC 954 ms
11,648 KB
testcase_13 TLE -
testcase_14 AC 957 ms
11,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from itertools import combinations
input = sys.stdin.readline

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

dp = [0]*(1 << N)

for bitset in range(1 << N):
    for (p1, power1), (p2, power2) in combinations(enumerate(power), r=2):
        if ((1 << p1) | (1 << p2)) & bitset:
            continue
        dp[bitset | (1 << p1) | (1 << p2)] = max(
            dp[bitset | (1 << p1) | (1 << p2)],
            dp[bitset] + (power1 ^ power2)
        )

print(dp[-1])
0