結果

問題 No.2994 べき内積
ユーザー t98slidert98slider
提出日時 2024-12-21 05:23:03
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,611 bytes
コンパイル時間 4,940 ms
コンパイル使用メモリ 271,236 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-12-21 05:23:10
合計ジャッジ時間 6,457 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 3 ms
6,816 KB
testcase_07 AC 4 ms
6,820 KB
testcase_08 AC 3 ms
6,816 KB
testcase_09 AC 5 ms
6,816 KB
testcase_10 AC 11 ms
6,816 KB
testcase_11 AC 11 ms
6,820 KB
testcase_12 AC 12 ms
6,816 KB
testcase_13 AC 12 ms
6,820 KB
testcase_14 AC 11 ms
6,820 KB
testcase_15 AC 12 ms
6,816 KB
testcase_16 AC 11 ms
6,816 KB
testcase_17 AC 12 ms
6,820 KB
testcase_18 AC 12 ms
6,816 KB
testcase_19 AC 38 ms
6,820 KB
testcase_20 AC 40 ms
6,816 KB
testcase_21 AC 37 ms
6,816 KB
testcase_22 AC 40 ms
6,820 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using mint = atcoder::modint998244353;
using mint2 = atcoder::static_modint<1009>;

long long intpow(long long a, long long b){ 
    long long ans = 1; 
    while(b){ 
        if(b & 1) ans *= a; 
        a *= a; 
        b >>= 1; 
    } 
    return ans;
}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int m, n;
    cin >> m >> n;
    m++, n++;
    vector<int> K(m), A(n);
    for(auto &&v : K) cin >> v;
    for(auto &&v : A) cin >> v;
    vector<mint> ans(1, 1), B(n);
    int prd = 1, idx = 0;
    auto safe = [&](vector<mint> &tmp){ for(auto &&v : tmp) v = mint::raw(v.val() % 1009); };
    auto frobenius = [&](int ex){
        vector<mint> tmp(1, 1);
        for(int i = 0; i < n; i++) B[i] = mint::raw(A[i]);
        while(ex){
            if(ex & 1){
                (tmp = convolution(tmp, B)).resize(n);
                safe(tmp);
            }
            ex /= 2;
            if(ex){
                (B = convolution(B, B)).resize(n);
                safe(B);
            }
        }
        if(prd >= 1009){
            tmp[1009] = tmp[1];
            tmp.resize(1010);
            for(int i = 1; i < 1009; i++) tmp[i] = mint::raw(0);
        }

        return tmp;
    };
    while(idx < m && prd < n){
        (ans = convolution(ans, frobenius(K[idx++]))).resize(n);
        safe(ans);
        prd *= 1009;
    }
    mint2 coef = mint2::raw(A[0]).pow(accumulate(K.begin() + idx, K.end(), 0));
    for(int i = 0; i < n; i++){
        cout << (coef * ans[i].val()).val() << (i + 1 == n ? '\n' : ' ');
    }
}
0