結果

問題 No.698 ペアでチームを作ろう
ユーザー UekiUeki
提出日時 2019-05-15 15:41:28
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 534 ms / 1,000 ms
コード長 663 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,392 KB
最終ジャッジ日時 2024-09-14 02:14:08
合計ジャッジ時間 6,453 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 45 ms
10,624 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 118 ms
10,752 KB
testcase_05 AC 485 ms
10,752 KB
testcase_06 AC 482 ms
10,752 KB
testcase_07 AC 506 ms
11,264 KB
testcase_08 AC 534 ms
11,264 KB
testcase_09 AC 520 ms
11,264 KB
testcase_10 AC 531 ms
11,392 KB
testcase_11 AC 509 ms
11,264 KB
testcase_12 AC 525 ms
11,136 KB
testcase_13 AC 513 ms
11,264 KB
testcase_14 AC 526 ms
11,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# -*- coding: utf-8 -*-
# python template for atcoder1
import sys
sys.setrecursionlimit(10**9)
input = sys.stdin.readline

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

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


# maskはすでにペアを作っている人の集合
for mask in range(1 << N):
    for a in range(N):
        if mask >> a & 1 == 1:
            continue
        for b in range(a+1, N):
            # ここで、aとbをペアにする
            if mask >> b & 1 == 0:  # a,b両方ともまだ使われていないなら
                new_state = mask | 1 << a | 1 << b
                dp[new_state] = max(dp[new_state], dp[mask]+(A[a] ^ A[b]))
print(dp[-1])
0