結果

問題 No.451 575
ユーザー kotatsugamekotatsugame
提出日時 2016-12-02 03:01:12
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 1,087 bytes
コンパイル時間 827 ms
コンパイル使用メモリ 68,352 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-09 18:27:22
合計ジャッジ時間 9,224 ms
ジャッジサーバーID
(参考情報)
judge2 / 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 2 ms
5,376 KB
testcase_05 AC 4 ms
5,376 KB
testcase_06 RE -
testcase_07 RE -
testcase_08 AC 2 ms
5,376 KB
testcase_09 WA -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 4 ms
5,376 KB
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 2 ms
5,376 KB
testcase_23 RE -
testcase_24 RE -
testcase_25 AC 3 ms
5,376 KB
testcase_26 AC 3 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 3 ms
5,376 KB
testcase_29 AC 9 ms
5,376 KB
testcase_30 RE -
testcase_31 AC 2 ms
5,376 KB
testcase_32 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

typedef long long int ll;

int main()
{
	int n;cin>>n;
	ll b[10000];
	ll mind=1e18;
	int p=0;
	for(int i=0;i<n;i++)
	{
		cin>>b[i];
		if(i&&mind>abs(b[i]-b[i-1]))
		{
			mind=abs(b[i]-b[i-1]);
			p=i;
		}
	}
	ll a[10001];
	bool flag=false;
	a[p+1]=1;
	for(int i=p;i>=0;i--)
	{
		if(i%2==0)
		{
			a[i]=b[i]-a[i+1];
		}
		else
		{
			a[i]=b[i]+a[i+1];
		}
	}
	for(int i=p+2;i<=n;i++)
	{
		if(i%2==0)
		{
			a[i]=a[i-1]-b[i-1];
		}
		else
		{
			a[i]=b[i-1]-a[i-1];
		}
	}
	for(int i=0;i<=n;i++)
	{
		if(a[i]<=0)
		{
			flag=true;
			break;
		}
	}
	if(flag)
	{
		for(int i=0;i<=n;i++)a[i]=0;
		a[p-1]=1;
		for(int i=p-2;i>=0;i--)
		{
			if(i%2==0)
			{
				a[i]=b[i]-a[i+1];
			}
			else
			{
				a[i]=b[i]+a[i+1];
			}
		}
		for(int i=p;i<=n;i++)
		{
			if(i%2==0)
			{
				a[i]=a[i-1]-b[i-1];
			}
			else
			{
				a[i]=b[i-1]-a[i-1];
			}
		}
		for(int i=0;i<=n;i++)
		{
			if(a[i]<=0)
			{
				cout<<-1<<endl;
				return 0;
			}
		}
	}
	cout<<n+1<<endl;
	for(int i=0;i<=n;i++)cout<<a[i]<<endl;
	return 0;
}
0