結果

問題 No.698 ペアでチームを作ろう
ユーザー tentententen
提出日時 2020-09-03 19:22:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 220 ms / 1,000 ms
コード長 1,226 bytes
コンパイル時間 2,582 ms
コンパイル使用メモリ 77,976 KB
実行使用メモリ 42,420 KB
最終ジャッジ日時 2024-11-23 22:21:12
合計ジャッジ時間 6,490 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 153 ms
41,044 KB
testcase_01 AC 151 ms
41,200 KB
testcase_02 AC 164 ms
41,288 KB
testcase_03 AC 157 ms
41,336 KB
testcase_04 AC 199 ms
41,596 KB
testcase_05 AC 205 ms
42,260 KB
testcase_06 AC 210 ms
42,148 KB
testcase_07 AC 211 ms
42,384 KB
testcase_08 AC 214 ms
42,292 KB
testcase_09 AC 209 ms
42,236 KB
testcase_10 AC 213 ms
42,420 KB
testcase_11 AC 206 ms
42,252 KB
testcase_12 AC 220 ms
42,348 KB
testcase_13 AC 201 ms
42,236 KB
testcase_14 AC 205 ms
42,300 KB
権限があれば一括ダウンロードができます

ソースコード

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();
    	}
    	int[] dp = new int[1 << n];
    	HashSet<Integer> pair = new HashSet<>();
    	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;
    	        }
    	        dp[i] = base;
    	        pair.add(i);
    	    } else if (count % 2 == 0) {
    	        int max = 0;
    	        for (int x : pair) {
    	            if ((x & i) != x) {
    	                continue;
    	            }
    	            max = Math.max(max, dp[x] + dp[i ^ x]);
    	        }
    	        dp[i] = max;
    	    }
    	}
    	System.out.println(dp[(1 << n) - 1]);
	}
	
	static int getPopcount(int x) {
	    int count = 0;
	    while (x > 0) {
	        count += x % 2;
	        x /= 2;
	    }
	    return count;
	}
}
0