結果

問題 No.698 ペアでチームを作ろう
ユーザー kei2ykei2y
提出日時 2024-10-20 17:59:15
言語 Swift
(5.10.0)
結果
WA  
実行時間 -
コード長 699 bytes
コンパイル時間 14,812 ms
コンパイル使用メモリ 131,808 KB
実行使用メモリ 9,600 KB
最終ジャッジ日時 2024-10-20 17:59:31
合計ジャッジ時間 15,929 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
9,216 KB
testcase_01 AC 8 ms
9,216 KB
testcase_02 WA -
testcase_03 AC 8 ms
9,216 KB
testcase_04 WA -
testcase_05 AC 15 ms
9,344 KB
testcase_06 AC 15 ms
9,472 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

let N = Int(readLine()!)!
let A = readLine()!.split(separator:" ").map{Int($0)!}

var dp = [Int](repeating:0,count:1<<N)

for bf in 0..<(1<<N) { // bit全探索のフラグ管理だから、bitFlag ⇒ bf

    //選手a,bの組み合わせを追加(配るdp)
    for a in 0..<N {
        if bf & 1<<a != 0 {continue}
        for b in a+1..<N {
            if bf & 1<<b != 0 {continue} // まだa,bが選ばれていない場合のみ、
                                         // a,bのペアを評価し、チームの戦闘力に反映する
            
            dp[bf + 1<<a + 1<<b] = max( dp[bf + 1<<a + 1<<b] , dp[bf] + A[a] ^ A[b] )
            
        }
    }    
}

print(dp[1<<N - 1])
0