結果

問題 No.545 ママの大事な二人の子供
ユーザー uafr_csuafr_cs
提出日時 2017-10-30 21:37:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 508 ms / 2,000 ms
コード長 2,083 bytes
コンパイル時間 2,352 ms
コンパイル使用メモリ 81,232 KB
実行使用メモリ 56,336 KB
最終ジャッジ日時 2024-11-22 10:56:50
合計ジャッジ時間 11,191 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,384 KB
testcase_01 AC 136 ms
41,216 KB
testcase_02 AC 135 ms
41,764 KB
testcase_03 AC 135 ms
41,312 KB
testcase_04 AC 135 ms
41,296 KB
testcase_05 AC 133 ms
41,376 KB
testcase_06 AC 133 ms
40,876 KB
testcase_07 AC 134 ms
41,000 KB
testcase_08 AC 136 ms
41,360 KB
testcase_09 AC 132 ms
41,200 KB
testcase_10 AC 135 ms
41,120 KB
testcase_11 AC 135 ms
40,984 KB
testcase_12 AC 135 ms
40,944 KB
testcase_13 AC 140 ms
41,348 KB
testcase_14 AC 147 ms
41,600 KB
testcase_15 AC 138 ms
41,392 KB
testcase_16 AC 146 ms
41,248 KB
testcase_17 AC 152 ms
41,552 KB
testcase_18 AC 185 ms
41,804 KB
testcase_19 AC 199 ms
42,120 KB
testcase_20 AC 214 ms
42,936 KB
testcase_21 AC 136 ms
41,572 KB
testcase_22 AC 367 ms
48,244 KB
testcase_23 AC 454 ms
55,732 KB
testcase_24 AC 335 ms
48,408 KB
testcase_25 AC 456 ms
55,436 KB
testcase_26 AC 390 ms
53,504 KB
testcase_27 AC 508 ms
56,312 KB
testcase_28 AC 441 ms
56,104 KB
testcase_29 AC 440 ms
55,836 KB
testcase_30 AC 478 ms
56,336 KB
testcase_31 AC 464 ms
56,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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);
	}
}
0