結果

問題 No.545 ママの大事な二人の子供
ユーザー 37zigen37zigen
提出日時 2016-07-21 21:34:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 283 ms / 2,000 ms
コード長 1,511 bytes
コンパイル時間 2,029 ms
コンパイル使用メモリ 78,484 KB
実行使用メモリ 44,020 KB
最終ジャッジ日時 2024-04-16 20:33:47
合計ジャッジ時間 8,484 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,540 KB
testcase_01 AC 109 ms
41,504 KB
testcase_02 AC 123 ms
41,544 KB
testcase_03 AC 122 ms
41,480 KB
testcase_04 AC 127 ms
41,192 KB
testcase_05 AC 110 ms
41,708 KB
testcase_06 AC 127 ms
41,380 KB
testcase_07 AC 126 ms
41,564 KB
testcase_08 AC 112 ms
41,340 KB
testcase_09 AC 120 ms
40,320 KB
testcase_10 AC 120 ms
41,784 KB
testcase_11 AC 130 ms
41,608 KB
testcase_12 AC 133 ms
41,728 KB
testcase_13 AC 129 ms
41,556 KB
testcase_14 AC 130 ms
41,344 KB
testcase_15 AC 128 ms
41,400 KB
testcase_16 AC 132 ms
41,340 KB
testcase_17 AC 131 ms
41,984 KB
testcase_18 AC 138 ms
41,432 KB
testcase_19 AC 167 ms
42,160 KB
testcase_20 AC 162 ms
41,996 KB
testcase_21 AC 124 ms
41,640 KB
testcase_22 AC 225 ms
43,232 KB
testcase_23 AC 274 ms
43,536 KB
testcase_24 AC 212 ms
43,264 KB
testcase_25 AC 278 ms
43,688 KB
testcase_26 AC 281 ms
44,000 KB
testcase_27 AC 243 ms
44,020 KB
testcase_28 AC 269 ms
43,948 KB
testcase_29 AC 268 ms
43,680 KB
testcase_30 AC 276 ms
43,980 KB
testcase_31 AC 283 ms
43,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class Main{
	public static void main(String[] args) {
		solver();
	}

	static void solver() {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		long[] diff1 = new long[(int) pow(2, n / 2)];
		long[] diff2 = new long[(int) pow(2, n - n / 2)];
		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();
		}
		for (int i = 0; i < n / 2; i++) {
			int d = (int) pow(2, i);
			for (int j = 0; j < d; j++) {
				diff1[j + d] = diff1[j] - b[i];
				diff1[j] = diff1[j] + a[i];
			}
		}
		int res = n / 2;
		for (int i = 0; i < n - n / 2; i++) {
			int d = (int) pow(2, i);
			for (int j = 0; j < d; j++) {
				diff2[j + d] = diff2[j] - b[i + res];
				diff2[j] = diff2[j] + a[i + res];
			}
		}
		Arrays.sort(diff1);
		Arrays.sort(diff2);

		long min = Long.MAX_VALUE;
		int j = diff2.length - 1;
		for (int i = 0; i < diff1.length; i++) {
			min = Math.min(min, Math.abs(diff1[i] + diff2[j]));
			while (j != 0 && Math.abs(diff1[i] + diff2[j]) >= Math.abs(diff1[i] + diff2[j - 1])) {
				j--;
				min = Math.min(Math.abs(diff1[i] + diff2[j]), min);
			}
		}
		System.out.println(min);
	}

	static long pow(long a, long n) {
		long A = a;
		long ans = 1;
		while (n >= 1) {
			if ((n&1) == 0) {
				A = A * A;
				n >>=1;
			} else{
				ans = ans * A;
				n--;
			}
		}
		return ans;
	}

	static void tr(Object... o) {
		System.out.println(Arrays.deepToString(o));
	}
}
0