• 洛谷


    https://www.luogu.org/problemnew/show/P3803

    看别人偏偏就是要用NTT去过。实验证明大概是这样用。求0~n的多项式和0~m的多项式的乘积。注意MAXN取值。A数组的大小必须足以容纳大于等于A+B总size的最小的2的幂次。干脆就直接取4倍?

    #include <bits/stdc++.h>
    using namespace std;
    typedef long long ll;
    
    const int MAXN = 4e6, mod = 998244353;
    
    inline int pow_mod(ll x, int n) {
        ll res;
        for(res = 1; n; n >>= 1, x = x * x % mod)
            if(n & 1)
                res = res * x % mod;
        return res;
    }
    
    inline int add_mod(int x, int y) {
        x += y;
        return x >= mod ? x - mod : x;
    }
    
    inline int sub_mod(int x, int y) {
        x -= y;
        return x < 0 ? x + mod : x;
    }
    
    void NTT(int a[], int n, int op) {
        for(int i = 1, j = n >> 1; i < n - 1; ++i) {
            if(i < j)
                swap(a[i], a[j]);
            int k = n >> 1;
            while(k <= j) {
                j -= k;
                k >>= 1;
            }
            j += k;
        }
        for(int len = 2; len <= n; len <<= 1) {
            int g = pow_mod(3, (mod - 1) / len);
            for(int i = 0; i < n; i += len) {
                int w = 1;
                for(int j = i; j < i + (len >> 1); ++j) {
                    int u = a[j], t = 1ll * a[j + (len >> 1)] * w % mod;
                    a[j] = add_mod(u, t), a[j + (len >> 1)] = sub_mod(u, t);
                    w = 1ll * w * g % mod;
                }
            }
        }
        if(op == -1) {
            reverse(a + 1, a + n);
            int inv = pow_mod(n, mod - 2);
            for(int i = 0; i < n; ++i)
                a[i] = 1ll * a[i] * inv % mod;
        }
    }
    
    int A[MAXN + 5], B[MAXN + 5];
    
    int pow2(int x) {
        int res = 1;
        while(res < x)
            res <<= 1;
        return res;
    }
    
    void convolution(int A[], int B[], int Asize, int Bsize) {
        int n = pow2(Asize + Bsize - 1);
        for(int i = Asize; i < n; ++i)
            A[i] = 0;
        for(int i = Bsize; i < n; ++i)
            B[i] = 0;
        NTT(A, n, 1);
        NTT(B, n, 1);
        for(int i = 0; i < n; ++i)
            A[i] = 1ll * A[i] * B[i] % mod;
        NTT(A, n, -1);
        return;
    }
    
    int main() {
    #ifdef Yinku
        freopen("Yinku.in", "r", stdin);
    #endif // Yinku
        int n, m;
        scanf("%d%d", &n, &m);
        for(int i = 0; i <= n; ++i) {
            scanf("%d", &A[i]);
            A[i] = add_mod(A[i], mod);
        }
        for(int i = 0; i <= m; ++i) {
            scanf("%d", &B[i]);
            B[i] = add_mod(B[i], mod);
        }
        convolution(A, B, n + 1, m + 1);
        for(int i = 0; i <= n + m; i++) {
            printf("%d%c", A[i], " 
    "[i == n + m]);
        }
        return 0;
    }
    

    反向学习FFT!不知道为什么不用反过来呢。

    #include <bits/stdc++.h>
    using namespace std;
    typedef long long ll;
    
    const int MAXN = 4e6;
    const double PI = acos(-1.0);
    
    struct Complex {
        double x, y;
        Complex() {}
        Complex(double x, double y): x(x), y(y) {}
        friend Complex operator+(const Complex &a, const Complex &b) {
            return Complex(a.x + b.x, a.y + b.y);
        }
        friend Complex operator-(const Complex &a, const Complex &b) {
            return Complex(a.x - b.x, a.y - b.y);
        }
        friend Complex operator*(const Complex &a, const Complex &b) {
            return Complex(a.x * b.x - a.y * b.y, a.x * b.y + a.y * b.x);
        }
    } A[MAXN + 5], B[MAXN + 5];
    
    void FFT(Complex a[], int n, int op) {
        for(int i = 1, j = n >> 1; i < n - 1; ++i) {
            if(i < j)
                swap(a[i], a[j]);
            int k = n >> 1;
            while(k <= j) {
                j -= k;
                k >>= 1;
            }
            j += k;
        }
        for(int len = 2; len <= n; len <<= 1) {
            Complex wn(cos(2.0 * PI / len), sin(2.0 * PI / len)*op);
            for(int i = 0; i < n; i += len) {
                Complex w(1.0, 0.0);
                for(int j = i; j < i + (len >> 1); ++j) {
                    Complex u = a[j], t = a[j + (len >> 1)] * w ;
                    a[j] = u + t, a[j + (len >> 1)] = u - t;
                    w = w * wn;
                }
            }
        }
        if(op == -1) {
            for(int i = 0; i < n; ++i)
                a[i].x = (int)(a[i].x / n + 0.5);
        }
    }
    
    int pow2(int x) {
        int res = 1;
        while(res < x)
            res <<= 1;
        return res;
    }
    
    void convolution(Complex A[], Complex B[], int Asize, int Bsize) {
        int n = pow2(Asize + Bsize - 1);
        for(int i = 0; i < n; ++i) {
            A[i].y = 0.0;
            B[i].y = 0.0;
        }
        for(int i = Asize; i < n; ++i)
            A[i].x = 0;
        for(int i = Bsize; i < n; ++i)
            B[i].x = 0;
        FFT(A, n, 1);
        FFT(B, n, 1);
        for(int i = 0; i < n; ++i)
            A[i] = A[i] * B[i];
        FFT(A, n, -1);
        return;
    }
    
    int main() {
    #ifdef Yinku
        freopen("Yinku.in", "r", stdin);
    #endif // Yinku
        int n, m;
        scanf("%d%d", &n, &m);
        for(int i = 0; i <= n; ++i) {
            scanf("%lf", &A[i].x);
        }
        for(int i = 0; i <= m; ++i) {
            scanf("%lf", &B[i].x);
        }
        convolution(A, B, n + 1, m + 1);
        for(int i = 0; i <= n + m; i++) {
            printf("%d%c", (int)A[i].x, " 
    "[i == n + m]);
        }
        return 0;
    }
    
  • 相关阅读:
    蓝翔杯子校内赛练习代码
    [蓝桥杯][算法训练VIP]猴子分苹果
    系统设计部分代码
    坐标离散化
    蒟蒻吃药计划-治疗系列 #round 1 机器分配+挖地雷
    蒟蒻吃药计划
    F小蒟蒻教你卡常
    最长不下降子序列
    最大子段和(DP)
    luogu P1216 (USACO1.5) Number Triangles
  • 原文地址:https://www.cnblogs.com/Yinku/p/11235018.html
Copyright © 2020-2023  润新知