結果

問題 No.545 ママの大事な二人の子供
ユーザー azyobuzinazyobuzin
提出日時 2017-07-16 22:31:55
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 18 ms / 2,000 ms
コード長 1,772 bytes
コンパイル時間 886 ms
コンパイル使用メモリ 82,584 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-04-27 02:27:59
合計ジャッジ時間 1,842 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 1 ms
6,940 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 1 ms
6,944 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 3 ms
6,940 KB
testcase_20 AC 3 ms
6,944 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 10 ms
6,940 KB
testcase_23 AC 18 ms
6,944 KB
testcase_24 AC 5 ms
6,940 KB
testcase_25 AC 12 ms
6,944 KB
testcase_26 AC 16 ms
6,940 KB
testcase_27 AC 10 ms
6,944 KB
testcase_28 AC 18 ms
6,944 KB
testcase_29 AC 12 ms
6,944 KB
testcase_30 AC 11 ms
6,944 KB
testcase_31 AC 11 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <cassert>
#include <cmath>
#include <iostream>
#include <vector>

std::vector<int64_t> find_all(std::vector<int64_t>& src) {
	assert(src.size() < 31);

	std::vector<int64_t> result;
	result.reserve(1u << src.size());
	result.push_back(0);

	for (int64_t v : src) {
		size_t size = result.size();
		for (int i = 0; i < size; i++) {
			result.push_back(result[i] + v);
		}
	}

	return result;
}

int64_t find_nearest(std::vector<int64_t>& src, int64_t v) {
	int start = 0, end = src.size();
	while (true) {
		assert(start + 1 < end);

		if (start + 2 == end) {
			int64_t xdiff = std::abs(src[start] - v);
			int64_t ydiff = std::abs(src[start + 1] - v);
			if (xdiff <= ydiff) return src[start];
			return src[start + 1];
		}

		int center_index = start + (end - start) / 2;
		if (src[center_index] < v) {
			start = center_index;
		}
		else if (src[center_index] > v) {
			end = center_index + 1;
		}
		else {
			return v;
		}
	}
}

int main()
{
	int n;
	std::cin >> n;

	int64_t a_sum = 0;
	std::vector<int64_t> a_plus_b1;
	a_plus_b1.reserve(n / 2);
	std::vector<int64_t> a_plus_b2;
	a_plus_b2.reserve(n - n / 2);
	for (int i = 0; i < n; i++) {
		int64_t a, b;
		std::cin >> a >> b;
		a_sum += a;
		if (i < n / 2)
			a_plus_b1.push_back(a + b);
		else
			a_plus_b2.push_back(a + b);
	}

	std::vector<int64_t> div1 = find_all(a_plus_b1);
	std::vector<int64_t> div2 = find_all(a_plus_b2);
	std::sort(div2.begin(), div2.end());

	int64_t min_value = INT64_MAX;
	for (int64_t i : div1) {
		int64_t nearest_in_div2 = find_nearest(div2, a_sum - i);
		min_value = std::min(min_value, std::abs(a_sum - i - nearest_in_div2));
	}

	std::cout << min_value << std::endl;
}
0