結果
問題 | No.545 ママの大事な二人の子供 |
ユーザー | uafr_cs |
提出日時 | 2017-10-30 21:37:54 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 395 ms / 2,000 ms |
コード長 | 2,083 bytes |
コンパイル時間 | 2,724 ms |
コンパイル使用メモリ | 80,540 KB |
実行使用メモリ | 56,260 KB |
最終ジャッジ日時 | 2024-05-02 01:35:09 |
合計ジャッジ時間 | 9,483 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 110 ms
40,668 KB |
testcase_01 | AC | 116 ms
40,944 KB |
testcase_02 | AC | 119 ms
40,996 KB |
testcase_03 | AC | 107 ms
40,304 KB |
testcase_04 | AC | 118 ms
41,052 KB |
testcase_05 | AC | 113 ms
41,032 KB |
testcase_06 | AC | 115 ms
40,884 KB |
testcase_07 | AC | 114 ms
41,200 KB |
testcase_08 | AC | 104 ms
40,048 KB |
testcase_09 | AC | 122 ms
41,260 KB |
testcase_10 | AC | 126 ms
40,844 KB |
testcase_11 | AC | 121 ms
41,356 KB |
testcase_12 | AC | 108 ms
39,900 KB |
testcase_13 | AC | 109 ms
40,556 KB |
testcase_14 | AC | 179 ms
41,352 KB |
testcase_15 | AC | 118 ms
41,292 KB |
testcase_16 | AC | 137 ms
41,260 KB |
testcase_17 | AC | 139 ms
41,436 KB |
testcase_18 | AC | 155 ms
41,612 KB |
testcase_19 | AC | 172 ms
42,368 KB |
testcase_20 | AC | 187 ms
42,976 KB |
testcase_21 | AC | 112 ms
41,124 KB |
testcase_22 | AC | 314 ms
48,284 KB |
testcase_23 | AC | 378 ms
56,056 KB |
testcase_24 | AC | 249 ms
48,404 KB |
testcase_25 | AC | 364 ms
55,784 KB |
testcase_26 | AC | 331 ms
53,896 KB |
testcase_27 | AC | 352 ms
55,432 KB |
testcase_28 | AC | 395 ms
56,124 KB |
testcase_29 | AC | 370 ms
56,260 KB |
testcase_30 | AC | 363 ms
55,692 KB |
testcase_31 | AC | 370 ms
56,056 KB |
ソースコード
import java.util.ArrayList; import java.util.Arrays; import java.util.Collections; import java.util.HashMap; import java.util.LinkedList; import java.util.Scanner; import java.util.TreeSet; public class Main { public static ArrayList<Long> all(int begin, int end, long[] as, long[] bs){ TreeSet<Long> set = new TreeSet<Long>(); final int size = end - begin; final int bit_size = 1 << size; for(int bit = 0; bit < bit_size; bit++){ long sum = 0; for(int i = 0; i < size; i++){ final int index = i + begin; if((bit & (1 << i)) == 0){ sum += as[index]; }else{ sum -= bs[index]; } } set.add(sum); } return new ArrayList<Long>(set); } public static void main(String[] args) { Scanner sc = new Scanner(System.in); final int n = sc.nextInt(); long[] as = new long[n]; long[] bs = new long[n]; for(int i = 0; i < n; i++){ as[i] = sc.nextLong(); bs[i] = sc.nextLong(); } if(n == 1){ System.out.println(Math.min(as[0], bs[0])); return; } final int fst_end = n / 2; ArrayList<Long> fst_part = all(0, fst_end, as, bs); ArrayList<Long> snd_part = all(fst_end, n, as, bs); //System.out.println(fst_part); //System.out.println(snd_part); long answer = Long.MAX_VALUE; for(int fst_index = 0; fst_index < fst_part.size(); fst_index++){ final long snd = - fst_part.get(fst_index); final int snd_index = Collections.binarySearch(snd_part, snd); if(snd_index >= 0){ System.out.println(0); return; }else{ final int lower = -(snd_index + 2); if(lower >= 0){ //System.out.println(fst_part.get(fst_index) + " " + snd_part.get(lower)); answer = Math.min(answer, Math.abs(snd_part.get(lower)+ fst_part.get(fst_index))); } final int upper = -(snd_index + 1); if(upper < snd_part.size()){ //System.out.println(fst_part.get(fst_index) + " " + snd_part.get(upper)); answer = Math.min(answer, Math.abs(snd_part.get(upper) + fst_part.get(fst_index))); } } } System.out.println(answer); } }