結果

問題 No.451 575
ユーザー 37zigen37zigen
提出日時 2016-12-02 02:56:25
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 2,097 bytes
コンパイル時間 4,257 ms
コンパイル使用メモリ 79,356 KB
実行使用メモリ 59,620 KB
最終ジャッジ日時 2024-12-16 09:48:46
合計ジャッジ時間 18,540 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
39,824 KB
testcase_01 AC 134 ms
41,344 KB
testcase_02 AC 120 ms
40,704 KB
testcase_03 AC 129 ms
41,188 KB
testcase_04 AC 123 ms
40,596 KB
testcase_05 AC 261 ms
45,764 KB
testcase_06 AC 365 ms
48,036 KB
testcase_07 AC 717 ms
51,716 KB
testcase_08 AC 108 ms
39,420 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 1,237 ms
59,620 KB
testcase_14 AC 142 ms
41,360 KB
testcase_15 AC 223 ms
45,116 KB
testcase_16 AC 368 ms
47,840 KB
testcase_17 AC 699 ms
52,704 KB
testcase_18 AC 721 ms
51,732 KB
testcase_19 AC 602 ms
48,876 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 127 ms
40,144 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 126 ms
41,200 KB
testcase_26 AC 124 ms
41,412 KB
testcase_27 AC 171 ms
41,584 KB
testcase_28 AC 187 ms
42,264 KB
testcase_29 AC 302 ms
46,844 KB
testcase_30 AC 711 ms
51,628 KB
testcase_31 AC 130 ms
40,536 KB
testcase_32 AC 441 ms
48,196 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;
			}
		}
		System.out.println(-1);

	}

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