結果

問題 No.2994 べき内積
ユーザー t98slidert98slider
提出日時 2024-12-21 05:53:49
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 67 ms / 2,000 ms
コード長 1,358 bytes
コンパイル時間 5,131 ms
コンパイル使用メモリ 266,824 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-12-21 05:53:56
合計ジャッジ時間 6,744 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 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 8 ms
6,816 KB
testcase_07 AC 8 ms
6,816 KB
testcase_08 AC 3 ms
6,816 KB
testcase_09 AC 9 ms
6,820 KB
testcase_10 AC 16 ms
6,816 KB
testcase_11 AC 15 ms
6,816 KB
testcase_12 AC 15 ms
6,820 KB
testcase_13 AC 17 ms
6,816 KB
testcase_14 AC 16 ms
6,824 KB
testcase_15 AC 15 ms
6,820 KB
testcase_16 AC 17 ms
6,816 KB
testcase_17 AC 15 ms
6,820 KB
testcase_18 AC 17 ms
6,820 KB
testcase_19 AC 60 ms
6,816 KB
testcase_20 AC 62 ms
6,816 KB
testcase_21 AC 57 ms
6,816 KB
testcase_22 AC 61 ms
6,816 KB
testcase_23 AC 63 ms
6,820 KB
testcase_24 AC 67 ms
6,820 KB
testcase_25 AC 65 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using ll = long long;
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);
    vector<ll> A(n), B, ans(1, 1);
    for(auto &&v : K) cin >> v;
    for(auto &&v : A) cin >> v;
    int prd = 1, idx = 0;
    auto mul = [&](const vector<ll> &lhs, const vector<ll> &rhs){
        auto res = atcoder::convolution_ll(lhs, rhs);
        if(res.size() > n) res.resize(n);
        for(auto &&v : res) v %= 1009;
        return res;
    };
    auto frobenius = [&](int ex){
        vector<ll> tmp(1, 1);
        B = A;
        while(ex){
            if(ex & 1) tmp = mul(tmp, B);
            ex /= 2;
            if(ex) B = mul(B, B);
        }
        if(prd == 1009){
            vector<ll> 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