結果

問題 No.545 ママの大事な二人の子供
ユーザー 37zigen37zigen
提出日時 2016-07-21 21:22:28
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,528 bytes
コンパイル時間 2,768 ms
コンパイル使用メモリ 77,912 KB
実行使用メモリ 44,068 KB
最終ジャッジ日時 2024-10-07 23:35:54
合計ジャッジ時間 9,559 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
41,916 KB
testcase_01 AC 136 ms
41,640 KB
testcase_02 AC 138 ms
41,364 KB
testcase_03 AC 138 ms
41,576 KB
testcase_04 AC 138 ms
41,260 KB
testcase_05 AC 140 ms
41,548 KB
testcase_06 AC 138 ms
41,268 KB
testcase_07 AC 136 ms
41,948 KB
testcase_08 AC 137 ms
41,364 KB
testcase_09 AC 137 ms
41,468 KB
testcase_10 WA -
testcase_11 AC 137 ms
41,272 KB
testcase_12 AC 137 ms
41,520 KB
testcase_13 AC 141 ms
41,356 KB
testcase_14 AC 140 ms
41,160 KB
testcase_15 AC 137 ms
41,228 KB
testcase_16 AC 140 ms
41,564 KB
testcase_17 AC 146 ms
41,236 KB
testcase_18 AC 154 ms
42,044 KB
testcase_19 AC 173 ms
41,692 KB
testcase_20 AC 194 ms
42,124 KB
testcase_21 AC 141 ms
41,308 KB
testcase_22 AC 235 ms
43,396 KB
testcase_23 AC 289 ms
43,448 KB
testcase_24 AC 232 ms
42,840 KB
testcase_25 AC 290 ms
43,728 KB
testcase_26 AC 295 ms
43,696 KB
testcase_27 AC 289 ms
43,896 KB
testcase_28 AC 296 ms
43,956 KB
testcase_29 AC 295 ms
43,728 KB
testcase_30 AC 290 ms
44,048 KB
testcase_31 AC 295 ms
44,068 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 % 2 == 0) {
				A = A * A;
				n /= 2;
			} else if (n % 2 == 1) {
				ans = ans * A;
				n--;
			}
		}
		return ans;
	}

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