結果
問題 | No.545 ママの大事な二人の子供 |
ユーザー | 37zigen |
提出日時 | 2016-07-21 21:31:48 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 302 ms / 2,000 ms |
コード長 | 1,529 bytes |
コンパイル時間 | 2,304 ms |
コンパイル使用メモリ | 78,044 KB |
実行使用メモリ | 44,116 KB |
最終ジャッジ日時 | 2024-10-07 23:37:06 |
合計ジャッジ時間 | 9,439 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 125 ms
40,944 KB |
testcase_01 | AC | 135 ms
41,532 KB |
testcase_02 | AC | 135 ms
41,104 KB |
testcase_03 | AC | 140 ms
41,212 KB |
testcase_04 | AC | 136 ms
41,540 KB |
testcase_05 | AC | 139 ms
41,520 KB |
testcase_06 | AC | 145 ms
41,396 KB |
testcase_07 | AC | 139 ms
41,844 KB |
testcase_08 | AC | 140 ms
41,552 KB |
testcase_09 | AC | 139 ms
41,152 KB |
testcase_10 | AC | 145 ms
41,496 KB |
testcase_11 | AC | 135 ms
41,352 KB |
testcase_12 | AC | 136 ms
41,268 KB |
testcase_13 | AC | 143 ms
41,140 KB |
testcase_14 | AC | 145 ms
41,660 KB |
testcase_15 | AC | 147 ms
41,116 KB |
testcase_16 | AC | 146 ms
41,580 KB |
testcase_17 | AC | 147 ms
41,760 KB |
testcase_18 | AC | 150 ms
41,268 KB |
testcase_19 | AC | 173 ms
41,856 KB |
testcase_20 | AC | 194 ms
42,204 KB |
testcase_21 | AC | 137 ms
41,364 KB |
testcase_22 | AC | 242 ms
43,420 KB |
testcase_23 | AC | 287 ms
43,604 KB |
testcase_24 | AC | 236 ms
42,756 KB |
testcase_25 | AC | 300 ms
44,116 KB |
testcase_26 | AC | 302 ms
43,804 KB |
testcase_27 | AC | 288 ms
44,072 KB |
testcase_28 | AC | 294 ms
44,032 KB |
testcase_29 | AC | 301 ms
44,044 KB |
testcase_30 | AC | 292 ms
43,692 KB |
testcase_31 | AC | 299 ms
43,692 KB |
ソースコード
import java.util.Arrays; import java.util.Scanner; public class Main{ public static void main(String[] args) { solver(); } static void solver() { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); long[] diff1 = new long[(int) pow(2, n / 2)]; long[] diff2 = new long[(int) pow(2, n - n / 2)]; long[] a = new long[n]; long[] b = new long[n]; for (int i = 0; i < n; i++) { a[i] = sc.nextLong(); b[i] = sc.nextLong(); } for (int i = 0; i < n / 2; i++) { int d = (int) pow(2, i); for (int j = 0; j < d; j++) { diff1[j + d] = diff1[j] - b[i]; diff1[j] = diff1[j] + a[i]; } } int res = n / 2; for (int i = 0; i < n - n / 2; i++) { int d = (int) pow(2, i); for (int j = 0; j < d; j++) { diff2[j + d] = diff2[j] - b[i + res]; diff2[j] = diff2[j] + a[i + res]; } } Arrays.sort(diff1); Arrays.sort(diff2); long min = Long.MAX_VALUE; int j = diff2.length - 1; for (int i = 0; i < diff1.length; i++) { min = Math.min(min, Math.abs(diff1[i] + diff2[j])); while (j != 0 && Math.abs(diff1[i] + diff2[j]) >= Math.abs(diff1[i] + diff2[j - 1])) { j--; min = Math.min(Math.abs(diff1[i] + diff2[j]), min); } } System.out.println(min); } static long pow(long a, long n) { long A = a; long ans = 1; while (n >= 1) { if (n % 2 == 0) { A = A * A; n /= 2; } else if (n % 2 == 1) { ans = ans * A; n--; } } return ans; } static void tr(Object... o) { System.out.println(Arrays.deepToString(o)); } }