結果

問題 No.545 ママの大事な二人の子供
ユーザー Shun_PIShun_PI
提出日時 2017-07-15 12:52:51
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 3,565 bytes
コンパイル時間 2,825 ms
コンパイル使用メモリ 80,568 KB
実行使用メモリ 71,216 KB
最終ジャッジ日時 2024-04-16 21:45:29
合計ジャッジ時間 13,831 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 TLE -
testcase_23 TLE -
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];
				}
			}
			
			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