結果

問題 No.1017 Reiwa Sequence
ユーザー qLethonqLethon
提出日時 2020-04-03 22:19:34
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,145 bytes
コンパイル時間 3,583 ms
コンパイル使用メモリ 211,436 KB
実行使用メモリ 23,040 KB
最終ジャッジ日時 2024-07-03 03:52:31
合計ジャッジ時間 36,262 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
13,056 KB
testcase_01 AC 13 ms
11,776 KB
testcase_02 AC 11 ms
11,136 KB
testcase_03 AC 24 ms
15,744 KB
testcase_04 AC 11 ms
11,136 KB
testcase_05 AC 15 ms
12,416 KB
testcase_06 AC 12 ms
11,776 KB
testcase_07 AC 11 ms
11,136 KB
testcase_08 AC 11 ms
11,136 KB
testcase_09 AC 29 ms
17,664 KB
testcase_10 AC 40 ms
21,632 KB
testcase_11 AC 28 ms
17,152 KB
testcase_12 AC 40 ms
21,632 KB
testcase_13 AC 40 ms
21,632 KB
testcase_14 AC 27 ms
17,024 KB
testcase_15 AC 28 ms
17,664 KB
testcase_16 AC 28 ms
17,024 KB
testcase_17 AC 32 ms
19,072 KB
testcase_18 AC 28 ms
17,024 KB
testcase_19 AC 37 ms
21,632 KB
testcase_20 AC 37 ms
21,504 KB
testcase_21 AC 37 ms
21,632 KB
testcase_22 AC 39 ms
21,632 KB
testcase_23 AC 39 ms
21,632 KB
testcase_24 AC 40 ms
21,632 KB
testcase_25 AC 40 ms
21,632 KB
testcase_26 AC 39 ms
21,632 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 39 ms
21,632 KB
testcase_30 AC 40 ms
21,632 KB
testcase_31 AC 39 ms
21,632 KB
testcase_32 WA -
testcase_33 AC 39 ms
21,632 KB
testcase_34 WA -
testcase_35 AC 40 ms
21,504 KB
testcase_36 AC 40 ms
21,632 KB
testcase_37 WA -
testcase_38 AC 41 ms
21,632 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 AC 75 ms
22,400 KB
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 AC 98 ms
22,784 KB
testcase_49 AC 97 ms
23,040 KB
testcase_50 AC 100 ms
22,912 KB
testcase_51 AC 8 ms
10,496 KB
testcase_52 WA -
testcase_53 AC 41 ms
21,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
    int n;
    cin >> n;
    vector<int64_t> A(n);
    copy_n(istream_iterator<int64_t>(cin), n, A.begin());

    int m = n;
    n = min(n, 18);
    const constexpr int upper = 18 * 150000;
    vector<bitset<2 * upper + 1>> DP(n + 1);
    bitset<2 * upper + 1> zero;
    zero.set(upper);
    for (int i = 0; i < n; i++){
        DP[i + 1] = (zero << A[i]) | (zero >> A[i]) | (DP[i] << A[i]) | (DP[i] >> A[i]) | DP[i];
    }
    if (!DP[n][upper]){
        puts("No");
        return 0;
    }

    puts("Yes");
    for (int i = 0; i < n; i++)
        DP[i].set(upper);
    vector<int> ans;
    int pos = upper;
    for (int i = n - 1; i >= 0; i--){
        if (DP[i][pos + A[i]]){
            ans.push_back(-1);
            pos += A[i];
        }
        else if(DP[i][pos - A[i]]){
            ans.push_back(1);
            pos -= A[i];
        }
        else
            ans.push_back(0);
    }

    reverse(ans.begin(), ans.end());
    for (int i = 0; i < n; i++)
        cout << A[i] * ans[i] << " ";
    
    for (int i = n; i < m; i++)
        cout << 0 << " ";
    cout << endl;
}
0