結果

問題 No.451 575
ユーザー 37zigen37zigen
提出日時 2016-12-02 02:58:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,163 ms / 2,000 ms
コード長 2,133 bytes
コンパイル時間 4,289 ms
コンパイル使用メモリ 79,260 KB
実行使用メモリ 59,960 KB
最終ジャッジ日時 2024-05-09 19:04:20
合計ジャッジ時間 17,474 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
40,988 KB
testcase_01 AC 101 ms
41,340 KB
testcase_02 AC 103 ms
40,228 KB
testcase_03 AC 121 ms
40,820 KB
testcase_04 AC 116 ms
41,116 KB
testcase_05 AC 192 ms
45,608 KB
testcase_06 AC 319 ms
48,180 KB
testcase_07 AC 614 ms
51,244 KB
testcase_08 AC 100 ms
39,972 KB
testcase_09 AC 188 ms
42,296 KB
testcase_10 AC 570 ms
48,788 KB
testcase_11 AC 958 ms
59,612 KB
testcase_12 AC 1,077 ms
59,604 KB
testcase_13 AC 1,108 ms
59,592 KB
testcase_14 AC 119 ms
41,260 KB
testcase_15 AC 184 ms
45,392 KB
testcase_16 AC 326 ms
47,812 KB
testcase_17 AC 635 ms
51,620 KB
testcase_18 AC 592 ms
51,600 KB
testcase_19 AC 554 ms
48,976 KB
testcase_20 AC 278 ms
46,716 KB
testcase_21 AC 204 ms
42,724 KB
testcase_22 AC 101 ms
40,984 KB
testcase_23 AC 1,163 ms
59,960 KB
testcase_24 AC 755 ms
57,492 KB
testcase_25 AC 100 ms
40,152 KB
testcase_26 AC 103 ms
41,116 KB
testcase_27 AC 140 ms
41,552 KB
testcase_28 AC 174 ms
42,148 KB
testcase_29 AC 262 ms
47,572 KB
testcase_30 AC 550 ms
52,592 KB
testcase_31 AC 104 ms
40,848 KB
testcase_32 AC 384 ms
48,412 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]);
			}
			++i;
		}
		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]);
			}
			++i;
		}

		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;
					++i;
				}
				for (int i = 2; i <= n + 1; i += 3) {
					a[i] -= add;
					if (i + 1 <= n + 1)
						a[i + 1] -= add;
					++i;
				}
				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