結果
問題 | No.545 ママの大事な二人の子供 |
ユーザー | tenten |
提出日時 | 2021-03-09 08:21:17 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 460 ms / 2,000 ms |
コード長 | 1,702 bytes |
コンパイル時間 | 3,347 ms |
コンパイル使用メモリ | 79,116 KB |
実行使用メモリ | 65,048 KB |
最終ジャッジ日時 | 2024-10-10 23:11:07 |
合計ジャッジ時間 | 12,157 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 134 ms
54,180 KB |
testcase_01 | AC | 132 ms
53,996 KB |
testcase_02 | AC | 132 ms
53,916 KB |
testcase_03 | AC | 134 ms
54,212 KB |
testcase_04 | AC | 132 ms
54,408 KB |
testcase_05 | AC | 133 ms
54,628 KB |
testcase_06 | AC | 132 ms
54,040 KB |
testcase_07 | AC | 133 ms
53,912 KB |
testcase_08 | AC | 135 ms
53,628 KB |
testcase_09 | AC | 133 ms
54,252 KB |
testcase_10 | AC | 119 ms
52,924 KB |
testcase_11 | AC | 134 ms
53,932 KB |
testcase_12 | AC | 135 ms
53,784 KB |
testcase_13 | AC | 141 ms
53,924 KB |
testcase_14 | AC | 143 ms
54,060 KB |
testcase_15 | AC | 135 ms
53,776 KB |
testcase_16 | AC | 143 ms
53,692 KB |
testcase_17 | AC | 149 ms
53,976 KB |
testcase_18 | AC | 179 ms
54,088 KB |
testcase_19 | AC | 207 ms
54,860 KB |
testcase_20 | AC | 208 ms
57,116 KB |
testcase_21 | AC | 130 ms
53,628 KB |
testcase_22 | AC | 331 ms
60,300 KB |
testcase_23 | AC | 408 ms
65,048 KB |
testcase_24 | AC | 329 ms
61,112 KB |
testcase_25 | AC | 439 ms
64,612 KB |
testcase_26 | AC | 403 ms
64,604 KB |
testcase_27 | AC | 384 ms
64,384 KB |
testcase_28 | AC | 401 ms
64,360 KB |
testcase_29 | AC | 435 ms
64,376 KB |
testcase_30 | AC | 413 ms
64,408 KB |
testcase_31 | AC | 460 ms
64,460 KB |
ソースコード
import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); if (n == 1) { System.out.println(Math.min(sc.nextLong(), sc.nextLong())); return; } int n1 = n / 2; int n2 = n - n1; long[][] arr1 = new long[n1][2]; for (int i = 0; i < n1; i++) { arr1[i][0] = sc.nextLong(); arr1[i][1] = -sc.nextLong(); } long[][] arr2 = new long[n2][2]; for (int i = 0; i < n2; i++) { arr2[i][0] = sc.nextLong(); arr2[i][1] = -sc.nextLong(); } TreeSet<Long> result1 = new TreeSet<>(); for (int i = 0; i < (1 << n1); i++) { long ans = 0; int x = i; for (int j = 0; j < n1; j++) { ans += arr1[j][x % 2]; x >>= 1; } result1.add(ans); } TreeSet<Long> result2 = new TreeSet<>(); for (int i = 0; i < (1 << n2); i++) { long ans = 0; int x = i; for (int j = 0; j < n2; j++) { ans += arr2[j][x % 2]; x >>= 1; } result2.add(ans); } long ans = Long.MAX_VALUE; for (long x : result1) { Long ciel = result2.ceiling(-x); if (ciel != null) { ans = Math.min(ans, Math.abs(ciel + x)); } Long floor = result2.floor(-x); if (floor != null) { ans = Math.min(ans, Math.abs(x + floor)); } } System.out.println(ans); } }