結果

問題 No.2994 べき内積
ユーザー t98slidert98slider
提出日時 2024-12-21 05:45:55
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 183 ms / 2,000 ms
コード長 1,465 bytes
コンパイル時間 5,232 ms
コンパイル使用メモリ 267,416 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-12-21 05:46:04
合計ジャッジ時間 6,760 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 16 ms
6,816 KB
testcase_07 AC 18 ms
6,816 KB
testcase_08 AC 3 ms
6,816 KB
testcase_09 AC 17 ms
6,816 KB
testcase_10 AC 24 ms
6,816 KB
testcase_11 AC 23 ms
6,820 KB
testcase_12 AC 21 ms
6,816 KB
testcase_13 AC 24 ms
6,820 KB
testcase_14 AC 24 ms
6,816 KB
testcase_15 AC 23 ms
6,820 KB
testcase_16 AC 24 ms
6,820 KB
testcase_17 AC 24 ms
6,820 KB
testcase_18 AC 26 ms
6,816 KB
testcase_19 AC 143 ms
6,820 KB
testcase_20 AC 183 ms
6,820 KB
testcase_21 AC 126 ms
6,816 KB
testcase_22 AC 147 ms
6,820 KB
testcase_23 AC 158 ms
6,820 KB
testcase_24 AC 171 ms
6,820 KB
testcase_25 AC 158 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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 mul = [&](const vector<mint> &lhs, const vector<mint> &rhs){
        vector<mint> res(n);
        for(int i = 0; i < lhs.size(); i++){
            for(int j = 0; i + j < n && j < rhs.size(); j++){
                res[i + j] += lhs[i] * rhs[j];
            }
        }
        return res;
    };
    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 = mul(tmp, B);
            ex /= 2;
            if(ex) B = mul(B, B);
        }
        if(prd == 1009){
            vector<mint> res(1, tmp[0]);
            if(tmp.size() >= 2){
                res.resize(1010);
                res[1009] = tmp[1];
            }
            swap(res, tmp);
        }

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