結果

問題 No.699 ペアでチームを作ろう2
ユーザー tentententen
提出日時 2020-09-03 19:34:01
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,680 bytes
コンパイル時間 2,377 ms
コンパイル使用メモリ 79,436 KB
実行使用メモリ 153,908 KB
最終ジャッジ日時 2024-05-03 02:34:48
合計ジャッジ時間 7,027 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
60,988 KB
testcase_01 AC 134 ms
53,928 KB
testcase_02 AC 181 ms
56,280 KB
testcase_03 AC 133 ms
54,268 KB
testcase_04 AC 586 ms
75,808 KB
testcase_05 AC 321 ms
51,936 KB
testcase_06 AC 350 ms
54,748 KB
testcase_07 TLE -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
    	Scanner sc = new Scanner(System.in);
    	int n = sc.nextInt();
    	int[] arr = new int[n];
    	for (int i = 0; i < n; i++) {
    	    arr[i] = sc.nextInt();
    	}
    	if (n == 2) {
    	    System.out.println(arr[0] + arr[1]);
    	    return;
    	}
    	HashMap<Integer, HashSet<Integer>> dp = new HashMap<>();
    	HashMap<Integer, Integer> pair = new HashMap<>();
    	for (int i = 1; i < (1 << n); i++) {
    	    int count = getPopcount(i);
    	    if (count == 2) {
    	        int base = 0;
    	        int value = i;
    	        for (int j = 0; j < n; j++) {
    	            if (value % 2 == 1) {
    	                base += arr[j];
    	            }
    	            value /= 2;
    	        }
    	        pair.put(i, base);
    	    } else if (count % 2 == 0) {
    	        HashSet<Integer> tmp = new HashSet<>();
    	        for (int x : pair.keySet()) {
    	            if ((x & i) != x) {
    	                continue;
    	            }
    	            if (getPopcount(i ^ x) == 2) {
    	                tmp.add(pair.get(x) ^ pair.get(i ^ x));
    	            } else {
    	                for (int y : dp.get(i ^ x)) {
    	                    tmp.add(pair.get(x) ^ y);
    	                }
    	            }
    	        }
    	        dp.put(i, tmp);
    	    }
    	}
    	int max = 0;
    	for (int x : dp.get((1 << n) - 1)) {
    	    max = Math.max(max, x);
    	}
    	System.out.println(max);
	}
	
	static int getPopcount(int x) {
	    int count = 0;
	    while (x > 0) {
	        count += x % 2;
	        x /= 2;
	    }
	    return count;
	}
}
0