結果

問題 No.451 575
ユーザー 37zigen37zigen
提出日時 2016-12-02 02:57:15
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 2,113 bytes
コンパイル時間 4,102 ms
コンパイル使用メモリ 80,256 KB
実行使用メモリ 59,932 KB
最終ジャッジ日時 2024-05-09 18:27:00
合計ジャッジ時間 23,983 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
41,308 KB
testcase_01 AC 136 ms
41,448 KB
testcase_02 RE -
testcase_03 AC 141 ms
41,396 KB
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 AC 781 ms
51,712 KB
testcase_08 AC 139 ms
41,524 KB
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 AC 1,475 ms
59,932 KB
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 AC 134 ms
41,256 KB
testcase_23 RE -
testcase_24 RE -
testcase_25 AC 147 ms
41,100 KB
testcase_26 RE -
testcase_27 AC 191 ms
42,000 KB
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 AC 501 ms
48,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.*;

public class Q451 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		long[] b = new long[n + 1];
		long[] a = new long[n + 2];
		long Max = 1_000_000_000_000_000_000L;
		for (int i = 1; i <= n; ++i) {
			b[i] = sc.nextLong();
			if ((i + 1) % 2 == 0)
				a[i + 1] += b[i];
			else
				a[i + 1] -= b[i];
		}
		a[1] = 1;
		for (int i = 2; i <= n + 1; ++i) {
			if (i % 2 == 0) {
				a[i] -= a[i - 1];
			} else {
				a[i] += a[i - 1];
			}
			if (a[i] > 2 * Max || a[i] < -Max) {
				System.out.println(-1);
				return;
			}
		}

		long oddMax = a[1];
		long oddMin = a[1];
		long evenMax = a[2];
		long evenMin = a[2];
		for (int i = 4; i <= n + 1; i += 3) {
			oddMax = Math.max(oddMax, a[i]);
			oddMin = Math.min(oddMin, a[i]);
			if (i + 1 <= n + 1) {
				oddMax = Math.max(oddMax, a[i + 1]);
				oddMin = Math.min(oddMin, a[i + 1]);
			}
		}
		for (int i = 2; i <= n + 1; i += 3) {
			evenMax = Math.max(evenMax, a[i]);
			evenMin = Math.min(evenMin, a[i]);
			if (i + 1 <= n + 1) {
				evenMax = Math.max(evenMax, a[i + 1]);
				evenMin = Math.min(evenMin, a[i + 1]);
			}
		}

		ArrayDeque<Long> que = new ArrayDeque<>();
		// oddにどれだけ加算するか
		que.add(Max - oddMax);
		que.add(-Max + evenMax);
		que.add(1 - oddMin);
		que.add(-1 + evenMin);
		while (!que.isEmpty()) {
			long add = que.poll();
			if (oddMax + add <= Max && oddMax + add > 0 && evenMax - add <= Max && evenMax - add > 0 && oddMin + add > 0
					&& oddMin + add <= Max && evenMin - add > 0 && evenMin - add <= Max) {
				System.out.println(n + 1);
				a[1] += add;
				for (int i = 4; i <= n + 1; i += 3) {
					a[i] += add;
					if (i + 1 <= n + 1)
						a[i + 1] += add;
				}
				for (int i = 2; i <= n + 1; i += 3) {
					a[i] -= add;
					if (i + 1 <= n + 1)
						a[i + 1] -= add;
				}
				for (int i = 1; i <= n + 1; ++i)
					System.out.println(a[i]);
				return;
			}
		}
		assert false;
		System.out.println(-1);

	}

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