結果
問題 | No.545 ママの大事な二人の子供 |
ユーザー | Shun_PI |
提出日時 | 2017-07-14 23:23:11 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,170 bytes |
コンパイル時間 | 2,413 ms |
コンパイル使用メモリ | 78,088 KB |
実行使用メモリ | 41,500 KB |
最終ジャッジ日時 | 2024-10-07 23:54:40 |
合計ジャッジ時間 | 5,750 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | AC | 45 ms
36,880 KB |
testcase_05 | AC | 46 ms
36,728 KB |
testcase_06 | RE | - |
testcase_07 | AC | 45 ms
36,276 KB |
testcase_08 | AC | 46 ms
36,572 KB |
testcase_09 | AC | 48 ms
36,632 KB |
testcase_10 | AC | 46 ms
36,724 KB |
testcase_11 | AC | 47 ms
36,372 KB |
testcase_12 | AC | 45 ms
36,796 KB |
testcase_13 | AC | 46 ms
36,644 KB |
testcase_14 | AC | 48 ms
36,808 KB |
testcase_15 | WA | - |
testcase_16 | AC | 48 ms
36,592 KB |
testcase_17 | RE | - |
testcase_18 | AC | 51 ms
36,604 KB |
testcase_19 | WA | - |
testcase_20 | RE | - |
testcase_21 | WA | - |
testcase_22 | RE | - |
testcase_23 | AC | 204 ms
41,240 KB |
testcase_24 | RE | - |
testcase_25 | AC | 195 ms
41,252 KB |
testcase_26 | AC | 191 ms
41,180 KB |
testcase_27 | AC | 193 ms
41,196 KB |
testcase_28 | RE | - |
testcase_29 | WA | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
ソースコード
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 == 0) { break; } else if(Math.abs(left[i] + right[m]) < Math.abs(left[i] + right[m+1])) { break; } else { l = m+1; } } else { if(m == 1<<rn) { 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]); } } 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()); } } }