結果

問題 No.2994 べき内積
ユーザー t98slidert98slider
提出日時 2024-12-19 23:11:57
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,094 bytes
コンパイル時間 7,242 ms
コンパイル使用メモリ 414,744 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-12-19 23:12:43
合計ジャッジ時間 45,706 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 1 ms
6,816 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 1 ms
6,816 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 1,382 ms
6,816 KB
testcase_07 WA -
testcase_08 AC 9 ms
6,820 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
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;
        if(i < 1009){
            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