結果

問題 No.931 Multiplicative Convolution
ユーザー 👑 hitonanodehitonanode
提出日時 2019-12-07 15:59:12
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 269 ms / 2,000 ms
コード長 3,719 bytes
コンパイル時間 1,615 ms
コンパイル使用メモリ 173,132 KB
実行使用メモリ 12,684 KB
最終ジャッジ日時 2023-08-26 20:02:16
合計ジャッジ時間 7,048 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 KB
testcase_01 AC 1 ms
4,376 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 AC 2 ms
4,380 KB
testcase_04 AC 1 ms
4,376 KB
testcase_05 AC 1 ms
4,380 KB
testcase_06 AC 3 ms
4,376 KB
testcase_07 AC 27 ms
4,380 KB
testcase_08 AC 268 ms
12,504 KB
testcase_09 AC 251 ms
12,368 KB
testcase_10 AC 266 ms
12,300 KB
testcase_11 AC 252 ms
12,112 KB
testcase_12 AC 254 ms
10,688 KB
testcase_13 AC 266 ms
12,424 KB
testcase_14 AC 269 ms
12,684 KB
testcase_15 AC 268 ms
12,468 KB
testcase_16 AC 267 ms
12,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using lint = long long int;
struct fast_ios { fast_ios(){ cin.tie(0); ios::sync_with_stdio(false); cout << fixed << setprecision(20); }; } fast_ios_;
#define FOR(i, begin, end) for(int i=(begin),i##_end_=(end);i<i##_end_;i++)
#define REP(i, n) FOR(i,0,n)
template<typename T> istream &operator>>(istream &is, vector<T> &vec){ for (auto &v : vec) is >> v; return is; }

lint power(lint x, lint n, lint MOD)
{
    lint ans = 1;
    while (n>0)
    {
        if (n & 1) (ans *= x) %= MOD;
        (x *= x) %= MOD;
       n >>= 1;
    }
   return ans %= MOD;
}
// Solve ax+by=gcd(a, b)
lint extgcd(lint a, lint b, lint &x, lint &y)
{
    lint d = a;
    if (b != 0) d = extgcd(b, a % b, y, x), y -= (a / b) * x;
    else x = 1, y = 0;
    return d;
}
// Calc a^(-1) (MOD m)
lint mod_inverse(lint a, lint m)
{
    lint x, y;
    extgcd(a, m, x, y);
    return (m + x % m) % m;
}

// mod: 素数, primitive_root: modの原始根 is_inverse: trueならば逆変換
void fft_mod(vector<lint> &a, lint mod, lint primitive_root, bool is_inverse=false)
{
    int n = a.size();
    lint h = power(primitive_root, (mod - 1) / n, mod);
    if (is_inverse) h = mod_inverse(h, mod);

    int i = 0;
    FOR(j, 1, n - 1) {
        for (int k = n >> 1; k > (i ^= k); k >>= 1);
        if (j < i) swap(a[i], a[j]);
    }
    for (int m = 1; m < n; m *= 2) {
        int m2 = 2 * m;
        lint base = power(h, n / m2, mod);
        lint w = 1;
        REP(x, m) {
            for (int s = x; s < n; s += m2) {
                lint u = a[s], d = a[s + m] * w % mod;
                a[s] = u + d - (u + d >= mod ? mod : 0), a[s + m] = u - d + (u - d < 0 ? mod : 0);
            }
            w = w * base % mod;
        }
    }
    for (auto &v : a) v = (v < 0 ? v + mod : v);
    if (is_inverse)
    {
        lint n_inv = mod_inverse(n, mod);
        for (auto &v : a) v = v * n_inv % mod;
    }
}
// MOD modにおける畳み込み演算 retval[i] = \sum_j a[j] b[i - j]
vector<lint> convolution_mod(vector<lint> a, vector<lint> b, lint mod, lint primitive_root)
{
    int sz = 1;
    while (sz < a.size() + b.size()) sz <<= 1;
    a.resize(sz), b.resize(sz);
    fft_mod(a, mod, primitive_root, false), fft_mod(b, mod, primitive_root, false);
    REP(i, sz) a[i] = a[i] * b[i] % mod;
    fft_mod(a, mod, primitive_root, true);
    return a;
}

constexpr lint MOD = 998244353;

lint find_smallest_primitive_root(lint p)
{
    std::vector<lint> fac;
    lint v = p - 1;
    for (lint pp = 2; pp * pp <= v; pp++) // prime factorization of (p - 1)
    {
        int e = 0;
        while (v % pp == 0) e++, v /= pp;
        if (e) fac.push_back(pp);
    }
    if (v > 1) fac.push_back(v);

    for (lint g = 1; g < p; g++)
    {
        if (power(g, p - 1, p) != 1) return -1;
        bool ok = true;
        for (auto pp : fac)
        {
            if (power(g, (p - 1) / pp, p) == 1)
            {
                ok = false;
                break;
            }
        }
        if (ok) return g;
    }
    return -1;
}

int main()
{
    int P;
    cin >> P;
    vector<lint> A(P - 1), B(P - 1);
    cin >> A >> B;
    if (P == 2)
    {
        cout << A[0] * B[0] % MOD << endl;
        return 0;
    }
    lint b = find_smallest_primitive_root(P);
    vector<lint> pp(P, 1), ppinv(P);
    FOR(i, 1, P) pp[i] = pp[i - 1] * b % P;
    REP(i, P) ppinv[pp[i]] = i;
    vector<lint> AS(P), BS(P);
    REP(i, P - 1) AS[ppinv[i + 1]] = A[i];
    REP(i, P - 1) BS[ppinv[i + 1]] = B[i];
    vector<lint> v = convolution_mod(AS, BS, MOD, 3);
    vector<lint> ret(P + 1);
    FOR(i, 1, v.size())
    {
        (ret[power(b, i, P)] += v[i]) %= MOD;
    }
    FOR(i, 1, P) printf("%lld ", ret[i]);
}
0