結果

問題 No.2966 Simple Plus Minus Problem
ユーザー t98slidert98slider
提出日時 2024-11-16 17:03:33
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,587 bytes
コンパイル時間 5,051 ms
コンパイル使用メモリ 269,648 KB
実行使用メモリ 15,256 KB
最終ジャッジ日時 2024-11-16 17:04:10
合計ジャッジ時間 35,878 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 2 ms
5,248 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 8 ms
5,248 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 3 ms
5,248 KB
testcase_13 AC 10 ms
5,248 KB
testcase_14 AC 3 ms
5,248 KB
testcase_15 WA -
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 11 ms
5,248 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 4 ms
5,248 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 40 ms
5,248 KB
testcase_25 WA -
testcase_26 AC 9 ms
5,248 KB
testcase_27 AC 37 ms
5,248 KB
testcase_28 AC 5 ms
5,248 KB
testcase_29 AC 33 ms
5,248 KB
testcase_30 AC 3 ms
5,248 KB
testcase_31 WA -
testcase_32 AC 2 ms
5,248 KB
testcase_33 AC 3 ms
5,248 KB
testcase_34 AC 708 ms
8,980 KB
testcase_35 AC 1,383 ms
14,932 KB
testcase_36 AC 650 ms
9,196 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 AC 1,370 ms
14,532 KB
testcase_45 AC 1,155 ms
15,256 KB
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 AC 1,312 ms
14,704 KB
testcase_50 WA -
testcase_51 AC 1,288 ms
14,096 KB
testcase_52 AC 114 ms
13,336 KB
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
using mint = modint998244353;
using ll = long long;

template<class T> istream& operator >> (istream& is, vector<T>& vec) {
    for(T& x : vec) is >> x;
    return is;
}

template<class T> ostream& operator << (ostream& os, const vector<T>& vec) {
    if(vec.empty()) return os;
    os << vec[0];
    for(auto it = vec.begin(); ++it != vec.end(); ) os << ' ' << *it;
    return os;
}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int n, k;
    cin >> n >> k;
    vector<int> a(n);
    cin >> a;
    vector<mint> tmp(1, 1), coef(n), c(n);
    for(int i = 0; i < n; i += 2) coef[i] = 1;
    int ex = k / 2 + 1;
    while(ex != 0){
        if(ex & 1){
            tmp = convolution(tmp, coef);
            while(tmp.size() > n) tmp.pop_back();
        }
        coef = convolution(coef, coef);
        while(coef.size() > n) coef.pop_back();
        ex /= 2;
    }
    /*vector<int> d = {1, 0, 0};
    for(int i = 0; i < k; i++){
        for(int j = 1; j < n; j++){
            if (j % 2 == 1) d[j] = d[j - 1] - d[j];
            else d[j] = d[j - 1] + d[j];
        }
        cerr << d << '\n';
    }
    cerr << "\n";*/
    for(int i = 0; i < n; i++) c[i] = a[i];
    if(k % 2 == 1){
        for(int i = 1; i < n; i += 2){
            c[i] = -c[i];
            tmp[i] = tmp[i - 1];
        }
    }
    auto ans = convolution(c, tmp);
    while(ans.size() > n) ans.pop_back();
    for(int i = 0; i < n; i++){
        cout << ans[i].val() << (i + 1 == n ? '\n' : ' ');
    }
}
0