結果

問題 No.451 575
ユーザー face4face4
提出日時 2019-01-06 12:04:57
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,286 bytes
コンパイル時間 651 ms
コンパイル使用メモリ 70,016 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-03 03:09:57
合計ジャッジ時間 6,764 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 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 4 ms
5,376 KB
testcase_06 AC 10 ms
5,376 KB
testcase_07 AC 64 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 185 ms
5,376 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 2 ms
5,376 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 2 ms
5,376 KB
testcase_26 WA -
testcase_27 AC 2 ms
5,376 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 15 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
using namespace std;

typedef unsigned long long ll;
const ll x = 1e18;

int main(){
    int n;
    cin >> n;

    ll b[n];
    for(int i = 0; i < n; i++)  cin >> b[i];

    for(int i = 0; i < n; i++){
        if(i%2){
            if(b[i] >= b[i-1]){
                cout << "-1" << endl;
                return 0;
            }
        }else{
            if(b[i] == 1){
                cout << "-1" << endl;
                return 0;
            }
        }
    }

    vector<ll> ans(n+1);
    ll first = 1;
    while(1){
        if(first <= 0 || first >= b[0]){
            cout << "-1" << endl;
            return 0;
        }

        ans[0] = first;
        int i;
        for(i = 0; i < n; i++){
            if(i%2){
                ll tmp = ans[i]-b[i];
                if(tmp <= 0){
                    first += -tmp+1;
                    break;
                }
                ans[i+1] = tmp;
            }else{
                ll tmp = b[i]-ans[i];
                if(tmp <= 0){
                    first += -tmp+1;
                    break;
                }
                ans[i+1] = tmp;
            }
        }

        if(i == n)  break;
    }

    cout << n+1 << endl;
    for(ll i : ans) cout << i << endl;
    
    return 0;
}
0