結果
問題 | No.545 ママの大事な二人の子供 |
ユーザー | tanzaku |
提出日時 | 2017-07-14 22:47:35 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,494 bytes |
コンパイル時間 | 4,029 ms |
コンパイル使用メモリ | 78,352 KB |
実行使用メモリ | 44,236 KB |
最終ジャッジ日時 | 2024-10-07 23:42:59 |
合計ジャッジ時間 | 11,029 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 135 ms
41,568 KB |
testcase_02 | WA | - |
testcase_03 | AC | 135 ms
41,260 KB |
testcase_04 | AC | 136 ms
41,272 KB |
testcase_05 | AC | 134 ms
41,012 KB |
testcase_06 | WA | - |
testcase_07 | AC | 135 ms
41,456 KB |
testcase_08 | WA | - |
testcase_09 | AC | 134 ms
41,172 KB |
testcase_10 | AC | 134 ms
41,332 KB |
testcase_11 | AC | 134 ms
41,752 KB |
testcase_12 | AC | 136 ms
40,988 KB |
testcase_13 | AC | 134 ms
41,376 KB |
testcase_14 | AC | 140 ms
41,252 KB |
testcase_15 | AC | 138 ms
41,156 KB |
testcase_16 | AC | 137 ms
41,480 KB |
testcase_17 | AC | 142 ms
41,616 KB |
testcase_18 | AC | 150 ms
41,248 KB |
testcase_19 | AC | 169 ms
41,652 KB |
testcase_20 | AC | 195 ms
41,796 KB |
testcase_21 | AC | 134 ms
41,236 KB |
testcase_22 | WA | - |
testcase_23 | AC | 309 ms
43,684 KB |
testcase_24 | AC | 252 ms
43,032 KB |
testcase_25 | AC | 308 ms
43,580 KB |
testcase_26 | WA | - |
testcase_27 | AC | 308 ms
43,444 KB |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | AC | 308 ms
43,848 KB |
testcase_31 | AC | 307 ms
43,904 KB |
ソースコード
import java.util.*; public class No546 { public static void main(String[] args) { try (final Scanner sc = new Scanner(System.in)) { int n = sc.nextInt(); 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(); } if (n == 1) { System.out.println(Math.min(A[0], B[0])); return; } long[] s1 = new long[1<<(n/2)]; long[] s2 = new long[1<<((n+1)/2)]; for (int i = 0; i < 1<<(n/2); i++) { long s = 0; for (int j = 0; j < n/2; j++) { if ((i>>j&1) == 1) { s += A[j]; } else { s -= B[j]; } } s1[i] = s; } for (int i = 0; i < 1<<((n+1)/2); i++) { long s = 0; for (int j = 0; j < (n+1)/2; j++) { if ((i>>j&1) == 1) { s += A[n/2+j]; } else { s -= B[n/2+j]; } } s2[i] = s; } Arrays.sort(s1); Arrays.sort(s2); long ans = Long.MAX_VALUE; for (int i = 0, j = s2.length - 1; i < s1.length; i++) { for (; j > 0; j--) { long cur = Math.abs(s1[i] + s2[j]); long next = Math.abs(s1[i] + s2[j-1]); ans = Math.min(ans, next); ans = Math.min(ans, next); if (cur < next) { break; } } } System.out.println(ans); } } static long gcd(long n, long r) { return r == 0 ? n : gcd(r, n % r); } static long lcm(long n, long r) { return n/gcd(n,r)*r; } static void dump(Object... objects) { System.err.println(Arrays.deepToString(objects)); } }