結果
問題 | No.699 ペアでチームを作ろう2 |
ユーザー | tenten |
提出日時 | 2020-09-03 19:32:11 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,591 bytes |
コンパイル時間 | 2,413 ms |
コンパイル使用メモリ | 79,336 KB |
実行使用メモリ | 153,812 KB |
最終ジャッジ日時 | 2024-05-03 02:29:34 |
合計ジャッジ時間 | 6,527 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 109 ms
54,416 KB |
testcase_01 | AC | 102 ms
53,000 KB |
testcase_02 | AC | 158 ms
56,352 KB |
testcase_03 | RE | - |
testcase_04 | AC | 394 ms
72,296 KB |
testcase_05 | AC | 275 ms
61,956 KB |
testcase_06 | AC | 289 ms
64,952 KB |
testcase_07 | TLE | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
ソースコード
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(); } 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; } }