結果

問題 No.2966 Simple Plus Minus Problem
ユーザー t98slidert98slider
提出日時 2024-11-16 17:06:39
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,584 ms / 2,567 ms
コード長 1,573 bytes
コンパイル時間 5,432 ms
コンパイル使用メモリ 269,524 KB
実行使用メモリ 15,408 KB
最終ジャッジ日時 2024-11-16 17:07:24
合計ジャッジ時間 37,077 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 97 ms
12,164 KB
testcase_04 AC 110 ms
12,812 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 3 ms
5,248 KB
testcase_07 AC 9 ms
5,248 KB
testcase_08 AC 6 ms
5,248 KB
testcase_09 AC 9 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 9 ms
5,248 KB
testcase_12 AC 4 ms
5,248 KB
testcase_13 AC 10 ms
5,248 KB
testcase_14 AC 3 ms
5,248 KB
testcase_15 AC 4 ms
5,248 KB
testcase_16 AC 3 ms
5,248 KB
testcase_17 AC 10 ms
5,248 KB
testcase_18 AC 3 ms
5,248 KB
testcase_19 AC 7 ms
5,248 KB
testcase_20 AC 8 ms
5,248 KB
testcase_21 AC 3 ms
5,248 KB
testcase_22 AC 2 ms
5,248 KB
testcase_23 AC 5 ms
5,248 KB
testcase_24 AC 41 ms
5,248 KB
testcase_25 AC 20 ms
5,248 KB
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 34 ms
5,248 KB
testcase_30 AC 4 ms
5,248 KB
testcase_31 AC 11 ms
5,248 KB
testcase_32 AC 2 ms
5,248 KB
testcase_33 AC 2 ms
5,248 KB
testcase_34 AC 657 ms
8,980 KB
testcase_35 AC 1,377 ms
14,680 KB
testcase_36 AC 622 ms
9,332 KB
testcase_37 AC 702 ms
9,048 KB
testcase_38 AC 1,294 ms
14,244 KB
testcase_39 AC 1,584 ms
13,940 KB
testcase_40 AC 660 ms
9,220 KB
testcase_41 AC 1,457 ms
14,948 KB
testcase_42 AC 1,441 ms
13,924 KB
testcase_43 AC 1,387 ms
14,356 KB
testcase_44 AC 1,345 ms
14,660 KB
testcase_45 AC 1,156 ms
15,256 KB
testcase_46 AC 1,352 ms
15,276 KB
testcase_47 AC 1,275 ms
14,464 KB
testcase_48 AC 1,221 ms
14,836 KB
testcase_49 AC 1,317 ms
14,704 KB
testcase_50 AC 689 ms
9,572 KB
testcase_51 AC 1,262 ms
14,096 KB
testcase_52 AC 115 ms
13,332 KB
testcase_53 AC 1,403 ms
15,408 KB
testcase_54 AC 1,366 ms
15,404 KB
testcase_55 AC 1,369 ms
15,276 KB
testcase_56 AC 1,369 ms
15,272 KB
権限があれば一括ダウンロードができます

ソースコード

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 + 1) / 2;
    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, 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";*/
    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