結果

問題 No.2994 べき内積
ユーザー t98slidert98slider
提出日時 2024-12-19 23:10:01
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,054 bytes
コンパイル時間 7,229 ms
コンパイル使用メモリ 413,988 KB
実行使用メモリ 18,024 KB
最終ジャッジ日時 2024-12-19 23:11:06
合計ジャッジ時間 64,410 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,272 KB
testcase_01 AC 2 ms
10,276 KB
testcase_02 AC 2 ms
10,152 KB
testcase_03 AC 2 ms
10,152 KB
testcase_04 AC 2 ms
13,640 KB
testcase_05 AC 2 ms
10,944 KB
testcase_06 AC 1,368 ms
13,636 KB
testcase_07 TLE -
testcase_08 AC 207 ms
13,636 KB
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#include <boost/multiprecision/cpp_int.hpp>
using Bint = boost::multiprecision::cpp_int;

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int m, n;
    cin >> m >> n;
    Bint tmp = 0, d = 1;
    for(int i = 0; i <= m; i++){
        int v;
        cin >> v;
        tmp += v * d;
        d *= 1009;
    }
    n++;
    vector<mint> a(n);
    for(int i = 0; i < n; i++){
        int v;
        cin >> v;
        a[i] = v;
    }
    vector<mint> b(n);
    b[0] = 1;
    while(tmp >= 1){
        if(tmp & 1){
            b = convolution(b, a);
            b.resize(n);
            for(int i = 0; i < n; i++){
                b[i] = b[i].val() % 1009;
            }
        }
        a = convolution(a, a);
        a.resize(n);
        for(int i = 0; i < n; i++){
            a[i] = a[i].val() % 1009;
        }
        tmp >>= 1;
    }
    for(int i = 0; i < n; i++){
        cout << b[i].val() << (i + 1 == n ? '\n' : ' ');
    }
}
0