結果

問題 No.545 ママの大事な二人の子供
ユーザー Shun_PIShun_PI
提出日時 2017-07-14 23:14:40
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 3,088 bytes
コンパイル時間 2,377 ms
コンパイル使用メモリ 78,484 KB
実行使用メモリ 44,740 KB
最終ジャッジ日時 2024-04-16 20:40:28
合計ジャッジ時間 5,880 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 TLE -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
権限があれば一括ダウンロードができます

ソースコード

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) {
					l = m+1;
				} 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