結果

問題 No.2966 Simple Plus Minus Problem
ユーザー t98slidert98slider
提出日時 2024-11-16 17:08:24
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,579 ms / 2,567 ms
コード長 1,009 bytes
コンパイル時間 4,673 ms
コンパイル使用メモリ 271,364 KB
実行使用メモリ 14,620 KB
最終ジャッジ日時 2024-11-16 17:09:00
合計ジャッジ時間 34,580 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 102 ms
11,600 KB
testcase_04 AC 109 ms
12,116 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 8 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 8 ms
5,248 KB
testcase_12 AC 3 ms
5,248 KB
testcase_13 AC 9 ms
5,248 KB
testcase_14 AC 3 ms
5,248 KB
testcase_15 AC 4 ms
5,248 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 10 ms
5,248 KB
testcase_18 AC 3 ms
5,248 KB
testcase_19 AC 8 ms
5,248 KB
testcase_20 AC 8 ms
5,248 KB
testcase_21 AC 4 ms
5,248 KB
testcase_22 AC 3 ms
5,248 KB
testcase_23 AC 5 ms
5,248 KB
testcase_24 AC 40 ms
5,248 KB
testcase_25 AC 20 ms
5,248 KB
testcase_26 AC 9 ms
5,248 KB
testcase_27 AC 36 ms
5,248 KB
testcase_28 AC 5 ms
5,248 KB
testcase_29 AC 32 ms
5,248 KB
testcase_30 AC 3 ms
5,248 KB
testcase_31 AC 10 ms
5,248 KB
testcase_32 AC 2 ms
5,248 KB
testcase_33 AC 2 ms
5,248 KB
testcase_34 AC 646 ms
8,460 KB
testcase_35 AC 1,338 ms
14,116 KB
testcase_36 AC 624 ms
8,848 KB
testcase_37 AC 696 ms
8,632 KB
testcase_38 AC 1,234 ms
13,796 KB
testcase_39 AC 1,579 ms
13,328 KB
testcase_40 AC 653 ms
8,732 KB
testcase_41 AC 1,365 ms
14,208 KB
testcase_42 AC 1,440 ms
13,188 KB
testcase_43 AC 1,366 ms
13,640 KB
testcase_44 AC 1,286 ms
14,128 KB
testcase_45 AC 1,130 ms
14,600 KB
testcase_46 AC 1,330 ms
14,412 KB
testcase_47 AC 1,277 ms
13,740 KB
testcase_48 AC 1,222 ms
14,124 KB
testcase_49 AC 1,285 ms
14,036 KB
testcase_50 AC 689 ms
9,136 KB
testcase_51 AC 1,286 ms
13,548 KB
testcase_52 AC 112 ms
12,552 KB
testcase_53 AC 1,362 ms
14,496 KB
testcase_54 AC 1,369 ms
14,620 KB
testcase_55 AC 1,365 ms
14,620 KB
testcase_56 AC 1,342 ms
14,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int n, k;
    cin >> n >> k;
    vector<mint> tmp(1, 1), coef(n), c(n);
    for(int i = 0; i < n; i++){
        int v;
        cin >> v;
        c[i] = v;
    }
    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;
    }
    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