結果

問題 No.698 ペアでチームを作ろう
ユーザー kei2ykei2y
提出日時 2024-10-20 18:18:59
言語 Swift
(5.10.0)
結果
AC  
実行時間 15 ms / 1,000 ms
コード長 701 bytes
コンパイル時間 15,725 ms
コンパイル使用メモリ 131,484 KB
実行使用メモリ 9,600 KB
最終ジャッジ日時 2024-10-20 18:19:16
合計ジャッジ時間 2,641 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

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