結果

問題 No.545 ママの大事な二人の子供
ユーザー Shun_PIShun_PI
提出日時 2017-07-14 23:24:52
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 3,383 bytes
コンパイル時間 2,205 ms
コンパイル使用メモリ 78,092 KB
実行使用メモリ 41,728 KB
最終ジャッジ日時 2024-04-16 20:49:32
合計ジャッジ時間 6,153 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
36,700 KB
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 AC 51 ms
37,044 KB
testcase_05 AC 51 ms
37,060 KB
testcase_06 RE -
testcase_07 AC 51 ms
36,892 KB
testcase_08 AC 51 ms
36,588 KB
testcase_09 AC 53 ms
37,012 KB
testcase_10 AC 53 ms
36,952 KB
testcase_11 AC 53 ms
37,028 KB
testcase_12 AC 51 ms
36,920 KB
testcase_13 AC 51 ms
36,428 KB
testcase_14 AC 52 ms
37,004 KB
testcase_15 AC 51 ms
36,920 KB
testcase_16 AC 53 ms
36,724 KB
testcase_17 RE -
testcase_18 AC 58 ms
36,948 KB
testcase_19 AC 70 ms
37,980 KB
testcase_20 RE -
testcase_21 AC 52 ms
36,892 KB
testcase_22 RE -
testcase_23 AC 219 ms
41,496 KB
testcase_24 RE -
testcase_25 AC 223 ms
41,620 KB
testcase_26 AC 208 ms
41,600 KB
testcase_27 AC 206 ms
41,728 KB
testcase_28 RE -
testcase_29 AC 219 ms
41,600 KB
testcase_30 RE -
testcase_31 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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