結果
問題 | No.545 ママの大事な二人の子供 |
ユーザー | Shun_PI |
提出日時 | 2017-07-14 23:26:21 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,387 bytes |
コンパイル時間 | 2,651 ms |
コンパイル使用メモリ | 79,096 KB |
実行使用メモリ | 42,180 KB |
最終ジャッジ日時 | 2024-10-07 23:57:34 |
合計ジャッジ時間 | 6,934 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 56 ms
36,936 KB |
testcase_01 | AC | 57 ms
36,804 KB |
testcase_02 | AC | 56 ms
36,860 KB |
testcase_03 | AC | 57 ms
36,964 KB |
testcase_04 | AC | 59 ms
36,384 KB |
testcase_05 | AC | 60 ms
36,732 KB |
testcase_06 | AC | 57 ms
36,664 KB |
testcase_07 | AC | 58 ms
36,572 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 59 ms
36,972 KB |
testcase_11 | AC | 65 ms
36,664 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 58 ms
36,756 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 58 ms
36,800 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 143 ms
39,916 KB |
testcase_25 | AC | 230 ms
41,136 KB |
testcase_26 | WA | - |
testcase_27 | AC | 214 ms
42,180 KB |
testcase_28 | WA | - |
testcase_29 | AC | 222 ms
41,284 KB |
testcase_30 | WA | - |
testcase_31 | WA | - |
ソースコード
import java.io.IOException; import java.io.InputStream; import java.util.Arrays; import java.util.NoSuchElementException; public class Main { private static FastScanner sc = new FastScanner(); public static void main(String[] args) { 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(); } int ln = n / 2; int rn = n - ln; long[] left = new long[1<<ln]; for(int i=0; i<(1<<ln); i++) { for(int j=0; j<ln; j++) { if((i>>j & 1) == 1) { left[i] += A[j]; } else { left[i] += B[j]; } } } long[] right = new long[1<<rn]; for(int i=0; i<(1<<rn); i++) { for(int j=0; j<rn; j++) { if((i>>j & 1) == 1) { right[i] += A[ln + j]; } else { right[i] += B[ln + j]; } } } Arrays.sort(right); long ans = Long.MAX_VALUE; for(int i=0; i<(1<<ln); i++) { int l = 0; int r = 1<<rn; int m = (l + r) / 2; while(l < r) { m = (l + r) / 2; if(left[i] + right[m] < 0) { if(m == 1<<rn - 1) { break; } else if(Math.abs(left[i] + right[m]) < Math.abs(left[i] + right[m+1])) { break; } else { l = m+1; } } else { if(m == 0) { break; } else if(Math.abs(left[i] + right[m]) < Math.abs(left[i] + right[m-1])) { break; } else { r = m-1; } } } if(Math.abs(left[i] + right[m]) < ans) { ans = Math.abs(left[i] + right[m]); } if(m+1 < 1<<rn && Math.abs(left[i] + right[m+1]) < ans) { ans = Math.abs(left[i] + right[m+1]); } if(m-1 >= 0 && Math.abs(left[i] + right[m-1]) < ans) { ans = Math.abs(left[i] + right[m-1]); } } System.out.println(ans); } static class FastScanner { private final InputStream in = System.in; private final byte[] buffer = new byte[1024]; private int ptr = 0; private int buflen = 0; private boolean hasNextByte() { if(ptr < buflen) { return true; } else { ptr = 0; try { buflen = in.read(buffer); } catch(IOException e) { e.printStackTrace(); } if(buflen <= 0) { return false; } } return true; } private int readByte() { if (hasNextByte()) return buffer[ptr++]; else return -1;} private static boolean isPrintableChar(int c) { return 33 <= c && c <= 126;} private void skipUnprintable() { while(hasNextByte() && !isPrintableChar(buffer[ptr])) ptr++;} public boolean hasNext() { skipUnprintable(); return hasNextByte();} public String next() { if (!hasNext()) throw new NoSuchElementException(); StringBuilder sb = new StringBuilder(); int b = readByte(); while(isPrintableChar(b)) { sb.appendCodePoint(b); b = readByte(); } return sb.toString(); } public long nextLong() { return Long.parseLong(next()); } public int nextInt(){ return Integer.parseInt(next()); } public double nextDouble(){ return Double.parseDouble(next()); } } }