結果

問題 No.545 ママの大事な二人の子供
ユーザー Shun_PIShun_PI
提出日時 2017-07-15 12:53:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 246 ms / 2,000 ms
コード長 3,575 bytes
コンパイル時間 2,779 ms
コンパイル使用メモリ 82,272 KB
実行使用メモリ 41,748 KB
最終ジャッジ日時 2024-04-16 21:45:55
合計ジャッジ時間 7,719 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
37,084 KB
testcase_01 AC 52 ms
37,060 KB
testcase_02 AC 51 ms
36,588 KB
testcase_03 AC 53 ms
36,784 KB
testcase_04 AC 51 ms
37,060 KB
testcase_05 AC 54 ms
36,700 KB
testcase_06 AC 51 ms
36,876 KB
testcase_07 AC 52 ms
36,948 KB
testcase_08 AC 52 ms
36,888 KB
testcase_09 AC 51 ms
36,784 KB
testcase_10 AC 53 ms
36,784 KB
testcase_11 AC 54 ms
36,568 KB
testcase_12 AC 51 ms
36,764 KB
testcase_13 AC 52 ms
36,584 KB
testcase_14 AC 53 ms
36,568 KB
testcase_15 AC 51 ms
36,900 KB
testcase_16 AC 54 ms
36,932 KB
testcase_17 AC 54 ms
36,944 KB
testcase_18 AC 59 ms
36,660 KB
testcase_19 AC 68 ms
38,328 KB
testcase_20 AC 90 ms
38,820 KB
testcase_21 AC 51 ms
36,892 KB
testcase_22 AC 157 ms
41,088 KB
testcase_23 AC 222 ms
41,504 KB
testcase_24 AC 178 ms
40,668 KB
testcase_25 AC 227 ms
41,176 KB
testcase_26 AC 219 ms
41,380 KB
testcase_27 AC 215 ms
41,452 KB
testcase_28 AC 246 ms
41,748 KB
testcase_29 AC 221 ms
41,612 KB
testcase_30 AC 220 ms
41,516 KB
testcase_31 AC 218 ms
41,364 KB
権限があれば一括ダウンロードができます

ソースコード

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];
				}
			}
			
//			System.out.println(left[i]);
		}
		
		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);
		
//		for(int i=0; i<(1<<rn); i++) {
//			System.out.println(right[i]);
//		}
		
		long ans = Long.MAX_VALUE;
		for(int i=0; i<(1<<ln); i++) {
			int l = 0;
			int r = (1<<rn) - 1;
			int m = (l + r) / 2;
			while(l < r) {
//				System.out.println("i=" + i + " l=" + l + " r=" + r);
				
				m = (l + r) / 2;
				if(left[i] + right[m] < 0) {
					if(m == 1<<rn - 1) {
						break;
					} else if(Math.abs(left[i] + right[m]) < Math.abs(left[i] + right[m+1])) {
						break;
					} else {
						l = m+1;
					}
				} else {
					if(m == 0) {
						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