結果

問題 No.451 575
ユーザー pekempeypekempey
提出日時 2016-12-02 00:48:25
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 141 ms / 2,000 ms
コード長 1,094 bytes
コンパイル時間 1,844 ms
コンパイル使用メモリ 170,872 KB
実行使用メモリ 5,468 KB
最終ジャッジ日時 2024-05-09 18:23:57
合計ジャッジ時間 4,222 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 4 ms
5,376 KB
testcase_07 AC 19 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 35 ms
5,376 KB
testcase_11 AC 111 ms
5,376 KB
testcase_12 AC 141 ms
5,376 KB
testcase_13 AC 134 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 3 ms
5,376 KB
testcase_16 AC 5 ms
5,376 KB
testcase_17 AC 19 ms
5,376 KB
testcase_18 AC 20 ms
5,376 KB
testcase_19 AC 13 ms
5,376 KB
testcase_20 AC 7 ms
5,376 KB
testcase_21 AC 3 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 137 ms
5,468 KB
testcase_24 AC 80 ms
5,376 KB
testcase_25 AC 1 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 4 ms
5,376 KB
testcase_30 AC 19 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 6 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

const int64_t X = 1e18;

int main() {
    int n;
    cin >> n;
    vector<int64_t> b(n);
    for (int i = 0; i < n; i++) {
        scanf("%lld", &b[i]);
        if ((i + 1) / 2 % 2 == 1) {
            b[i] *= -1;
        }
    }
    for (int i = 1; i < n; i++) {
        b[i] += b[i - 1];
        if (abs(b[i]) > 2e18) {
            cout << -1 << endl;
            return 0;
        }
    }
    int64_t L = 1;
    int64_t R = X;
    for (int i = 0; i < n; i++) {
        if (i / 2 % 2 == 0) {
            L = max(L, -X + b[i]);
            R = min(R, -1 + b[i]);
        } else {
            L = max(L, 1 + b[i]);
            R = min(R, X + b[i]);
        }
    }
    if (L > R) {
        cout << -1 << endl;
        return 0;
    }
    vector<int64_t> a;
    a.push_back(L);
    for (int i = 0; i < n; i++) {
        if (i / 2 % 2 == 0) {
            a.push_back(-L + b[i]);
        } else {
            a.push_back(L - b[i]);
        }
    }
    cout << a.size() << endl;
    for (int i = 0; i <= n; i++) {
        cout << a[i] << endl;
    }
}
0