結果

問題 No.698 ペアでチームを作ろう
ユーザー htensaihtensai
提出日時 2020-01-29 09:32:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 142 ms / 1,000 ms
コード長 1,349 bytes
コンパイル時間 2,223 ms
コンパイル使用メモリ 77,172 KB
実行使用メモリ 39,436 KB
最終ジャッジ日時 2024-09-15 20:10:12
合計ジャッジ時間 3,735 ms
ジャッジサーバーID
(参考情報)
judge1 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
36,804 KB
testcase_01 AC 53 ms
36,992 KB
testcase_02 AC 52 ms
37,012 KB
testcase_03 AC 51 ms
37,012 KB
testcase_04 AC 53 ms
36,972 KB
testcase_05 AC 142 ms
39,436 KB
testcase_06 AC 51 ms
36,968 KB
testcase_07 AC 52 ms
37,488 KB
testcase_08 AC 52 ms
37,304 KB
testcase_09 AC 51 ms
37,008 KB
testcase_10 AC 53 ms
37,040 KB
testcase_11 AC 52 ms
37,580 KB
testcase_12 AC 52 ms
37,360 KB
testcase_13 AC 51 ms
37,328 KB
testcase_14 AC 52 ms
37,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

public class Main {
    static int n;
    static int[][] dp;
    static int[] scores;
    public static void main(String[] args) throws Exception {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        n = Integer.parseInt(br.readLine());
        String[] line = br.readLine().split(" ", n);
        scores = new int[n];
        for (int i = 0; i < n; i++) {
            scores[i] = Integer.parseInt(line[i]);
        }
        dp = new int[n / 2 + 1][(int)(Math.pow(2, n))];
        System.out.println(dfw(n / 2, (int)(Math.pow(2, n)) - 1));
    }
    
    static int dfw(int idx, int key) {
        if (idx == 0) {
            return 0;
        }
        if (dp[idx][key] != 0) {
            return dp[idx][key];
        }
        int max = 0;
        for (int i = 0; i < n - 1; i++) {
            int x = (int)(Math.pow(2, i));
            if ((key & x) == 0) {
                continue;
            }
            for (int j = i + 1; j < n; j++) {
                int y = (int)(Math.pow(2, j));
                if ((key & y) == 0) {
                    continue;
                }
                max = Math.max(max, dfw(idx - 1, key ^ (x | y)) + (scores[i] ^ scores[j]));
            }
            break;
        }
        dp[idx][key] = max;
        return max;
    }
}
0