結果

問題 No.451 575
ユーザー tansunogontansunogon
提出日時 2017-01-07 04:57:48
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 1,120 bytes
コンパイル時間 536 ms
コンパイル使用メモリ 68,480 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-09 21:22:17
合計ジャッジ時間 6,332 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 4 ms
5,376 KB
testcase_06 AC 9 ms
5,376 KB
testcase_07 AC 59 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 44 ms
5,376 KB
testcase_11 AC 137 ms
5,376 KB
testcase_12 RE -
testcase_13 AC 174 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 4 ms
5,376 KB
testcase_16 AC 12 ms
5,376 KB
testcase_17 RE -
testcase_18 AC 64 ms
5,376 KB
testcase_19 AC 38 ms
5,376 KB
testcase_20 AC 8 ms
5,376 KB
testcase_21 AC 3 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 181 ms
5,376 KB
testcase_24 AC 90 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 1 ms
5,376 KB
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 AC 1 ms
5,376 KB
testcase_32 AC 14 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <cassert>
using namespace std;

using ll = long long;
const ll INF = 1e18 + 100;

const int MAX_N = 1e5;
const ll MAX_A = 1e18;
const ll MIN_A = 1;
int n;
ll b[MAX_N + 1];

// return a_1
ll solve()
{
	if (n == 1 && b[1] == 1)
		return -1;
	ll a_min = -INF;
	ll a_max =  INF;
	for (int i = n; i >= 1; --i)
	{
		if (i % 2 == 1)
		{
			ll a_min_ = b[i] - a_max;
			ll a_max_ = b[i] - a_min;
			a_min = max(MIN_A, a_min_);
			a_max = min(MAX_A, a_max_);
		}
		else
		{
			a_min = max(MIN_A, b[i] + a_min);
			a_max = min(MAX_A, b[i] + a_max);
		}
		if (a_min > a_max)
			return -1;
	}
	return a_min;
}

void output(ll a_1)
{
	ll a = a_1;
	cout << n + 1 << endl;
	cout << a << endl;
	for (int i = 1; i <= n; ++i)
	{
		if (i % 2 == 1)
		{
			a = b[i] - a;
			assert(a >= MIN_A && a <= MAX_A);
			cout << a << endl;
		}
		else
		{
			a = a - b[i];
			assert(a >= MIN_A && a <= MAX_A);
			cout << a << endl;
		}
	}
}

int main()
{
	cin >> n;
	for (int i = 1; i <= n; ++i)
		cin >> b[i];

	ll a_1 = solve();
	if (a_1 != -1)
		output(a_1);
	else
		cout << -1 << endl;
	return 0;
}
0