結果

問題 No.451 575
ユーザー 37zigen37zigen
提出日時 2016-12-02 01:59:26
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 1,833 bytes
コンパイル時間 2,448 ms
コンパイル使用メモリ 79,472 KB
実行使用メモリ 71,716 KB
最終ジャッジ日時 2024-12-16 09:31:57
合計ジャッジ時間 18,082 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
41,236 KB
testcase_01 AC 136 ms
41,576 KB
testcase_02 AC 109 ms
41,444 KB
testcase_03 AC 126 ms
41,320 KB
testcase_04 AC 125 ms
41,480 KB
testcase_05 AC 224 ms
45,764 KB
testcase_06 AC 365 ms
47,960 KB
testcase_07 AC 680 ms
53,552 KB
testcase_08 AC 128 ms
41,256 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 1,287 ms
59,704 KB
testcase_14 WA -
testcase_15 AC 218 ms
44,932 KB
testcase_16 AC 352 ms
48,028 KB
testcase_17 AC 689 ms
53,008 KB
testcase_18 WA -
testcase_19 AC 608 ms
48,928 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 123 ms
41,532 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 127 ms
41,332 KB
testcase_26 WA -
testcase_27 AC 175 ms
41,556 KB
testcase_28 AC 192 ms
42,564 KB
testcase_29 AC 311 ms
47,236 KB
testcase_30 AC 700 ms
52,732 KB
testcase_31 AC 124 ms
41,256 KB
testcase_32 AC 460 ms
48,564 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.*;

public class Main {
	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];
			}
		}

		long oddMax = -Long.MAX_VALUE;
		long oddMin = Long.MAX_VALUE;
		long evenMax = -Long.MAX_VALUE;
		long evenMin = Long.MAX_VALUE;
		for (int i = 1; i <= n + 1; ++i) {
			if (i % 2 == 1) {
				oddMax = Math.max(oddMax, a[i]);
				oddMin = Math.min(oddMin, a[i]);
			} else {
				evenMax = Math.max(evenMax, a[i]);
				evenMin = Math.min(evenMin, a[i]);
			}
		}
		if (oddMax > Max && oddMin < 1) {
			System.out.println(-1);
			return;
		} else if (evenMax > Max && oddMin < 1) {
			System.out.println(-1);
			return;
		}

		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);
				for (int i = 1; i <= n + 1; ++i) {
					if (i % 2 == 0) {
						System.out.println(a[i] + add);
					} else {
						System.out.println(a[i] - add);
					}
				}
				return;
			}
		}
		System.out.println(-1);

	}

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