結果

問題 No.545 ママの大事な二人の子供
ユーザー tanzakutanzaku
提出日時 2017-07-14 22:49:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 312 ms / 2,000 ms
コード長 1,493 bytes
コンパイル時間 3,559 ms
コンパイル使用メモリ 78,436 KB
実行使用メモリ 55,944 KB
最終ジャッジ日時 2024-10-07 23:43:27
合計ジャッジ時間 10,642 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
55,820 KB
testcase_01 AC 129 ms
53,996 KB
testcase_02 AC 127 ms
54,140 KB
testcase_03 AC 128 ms
54,320 KB
testcase_04 AC 127 ms
54,000 KB
testcase_05 AC 127 ms
54,104 KB
testcase_06 AC 114 ms
53,120 KB
testcase_07 AC 128 ms
53,968 KB
testcase_08 AC 131 ms
54,148 KB
testcase_09 AC 117 ms
52,808 KB
testcase_10 AC 129 ms
54,200 KB
testcase_11 AC 134 ms
53,968 KB
testcase_12 AC 128 ms
54,252 KB
testcase_13 AC 130 ms
54,324 KB
testcase_14 AC 131 ms
54,092 KB
testcase_15 AC 117 ms
52,992 KB
testcase_16 AC 119 ms
53,052 KB
testcase_17 AC 132 ms
54,320 KB
testcase_18 AC 144 ms
53,884 KB
testcase_19 AC 165 ms
54,160 KB
testcase_20 AC 193 ms
54,524 KB
testcase_21 AC 127 ms
53,948 KB
testcase_22 AC 246 ms
55,292 KB
testcase_23 AC 301 ms
55,520 KB
testcase_24 AC 239 ms
55,084 KB
testcase_25 AC 299 ms
55,744 KB
testcase_26 AC 293 ms
55,476 KB
testcase_27 AC 298 ms
55,944 KB
testcase_28 AC 312 ms
55,720 KB
testcase_29 AC 300 ms
55,584 KB
testcase_30 AC 306 ms
55,676 KB
testcase_31 AC 301 ms
55,796 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


import java.util.*;

public class No545 {

	public static void main(String[] args) {
		try (final Scanner sc = new Scanner(System.in)) {
			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();
			}
			if (n == 1) {
				System.out.println(Math.min(A[0], B[0]));
				return;
			}
			long[] s1 = new long[1<<(n/2)];
			long[] s2 = new long[1<<((n+1)/2)];
			for (int i = 0; i < 1<<(n/2); i++) {
				long s = 0;
				for (int j = 0; j < n/2; j++) {
					if ((i>>j&1) == 1) {
						s += A[j];
					} else {
						s -= B[j];
					}
				}
				s1[i] = s;
			}
			for (int i = 0; i < 1<<((n+1)/2); i++) {
				long s = 0;
				for (int j = 0; j < (n+1)/2; j++) {
					if ((i>>j&1) == 1) {
						s += A[n/2+j];
					} else {
						s -= B[n/2+j];
					}
				}
				s2[i] = s;
			}
			Arrays.sort(s1);
			Arrays.sort(s2);
			long ans = Long.MAX_VALUE;
			for (int i = 0, j = s2.length - 1; i < s1.length; i++) {
				for (; j > 0; j--) {
					long cur = Math.abs(s1[i] + s2[j]);
					long next = Math.abs(s1[i] + s2[j-1]);
					ans = Math.min(ans, cur);
					ans = Math.min(ans, next);
					if (cur < next) {
						break;
					}
				}
			}
			System.out.println(ans);
		}
	}
	
	static long gcd(long n, long r) { return r == 0 ? n : gcd(r, n % r); }
	static long lcm(long n, long r) { return n/gcd(n,r)*r; }
	static void dump(Object... objects) { System.err.println(Arrays.deepToString(objects)); }
}
0