石油大 2020年秋季组队训练赛第二十五场 问题 H: Needle (FFT)

本文介绍了一种使用快速傅立叶变换(FFT)解决数组a和c中元素组合问题的方法,通过将ai视为多项式的指数,利用FFT进行多项式相乘,计算满足ai+cj=2*bk的配对数量。关键步骤包括构建系数数组、FFT操作和逆变换,最终输出答案。
摘要由CSDN通过智能技术生成

题目:

 

思路:就是求数组a和数组c中有多少对(i,j),满足ai+cj==2*bk(k=1,2,3,..,nm)。将ai看作多项式的指数num[ai]看作多项式的系数。FFT求多项式相乘,再计算答案,系数ai就是对应和为i个数

#include <bits/stdc++.h>
#define ll long long
using namespace std;
const int N = 5e4+10;
const int M = 9e4+10;
const int base = 6e4;  
const double PI = acos(-1.0);
struct Complex
{
    double r,i;
    Complex(double _r = 0,double _i = 0)
    {
        r = _r; i = _i;
    }
    Complex operator +(const Complex &b)
    {
        return Complex(r+b.r,i+b.i);
    }
    Complex operator -(const Complex &b)
    {
        return Complex(r-b.r,i-b.i);
    }
    Complex operator *(const Complex &b)
    {
        return Complex(r*b.r-i*b.i,r*b.i+i*b.r);
    }
};
void change(Complex* y,int len)
{
    int i,j,k;
    for(i = 1, j = len/2;i < len-1;i++)
    {
        if(i < j)swap(y[i],y[j]);
        k = len/2;
        while( j >= k)
        {
            j -= k;
            k /= 2;
        }
        if(j < k)j += k;
    }
}
void fft(Complex* y,int len,int on)
{
    change(y,len);
    for(int h = 2;h <= len;h <<= 1)
    {
        Complex wn(cos(-on*2*PI/h),sin(-on*2*PI/h));
        for(int j = 0;j < len;j += h)
        {
            Complex w(1,0);
            for(int k = j;k < j+h/2;k++)
            {
                Complex u = y[k];
                Complex t = w*y[k+h/2];
                y[k] = u+t;
                y[k+h/2] = u-t;
                w = w*wn;
            }
        }
    }
    if(on == -1)
        for(int i = 0;i < len;i++)
            y[i].r /= len;
}
Complex x1[M<<2];
Complex x2[M<<2];
int nu,nm,nd,a[N],b[N],c[N];
int num1[M],num2[M];
long long num[M<<2]; 
int main(void){
    int maxa=0,maxc=0;
    scanf("%d",&nu);
    for(int i=1;i<=nu;i++){
        scanf("%d",&a[i]);
        a[i]=a[i]+base;
        maxa=max(maxa,a[i]);
        num1[a[i]]++;
    }
    scanf("%d",&nm);
    for(int i=1;i<=nm;i++){
        scanf("%d",&b[i]);
        b[i]=b[i]+base;
    }
    scanf("%d",&nd);
    for(int i=1;i<=nd;i++){
        scanf("%d",&c[i]);
        c[i]=c[i]+base;
        maxc=max(maxc,c[i]);
        num2[c[i]]++;
    }   
    maxa=max(maxa,maxc);
    int len,len1;
    len1=maxa+1;
    len=1;
    while(len < 2 * len1) len <<= 1;
    for(int i = 0; i < len1; i++)
       x1[i] = Complex(num1[i],0);
    for(int i = len1; i < len; i++)
       x1[i] = Complex(0,0);
    for(int i = 0; i < len1; i++)
       x2[i] = Complex(num2[i],0);
    for(int i = len1; i < len; i++)
       x2[i] = Complex(0,0);
    fft(x1,len,1);
    fft(x2,len,1);
    for(int i = 0;i < len;i++)
            x1[i] = (x1[i]*x2[i]);
    fft(x1,len,-1); 
    for(int i = 0;i < len;i++)
        num[i] = (long long)(x1[i].r+0.5);  
    ll ans=0;
    for(int i=1;i<=nm;i++)
        ans+=num[2*b[i]];
    cout<<ans<<endl;    
    return 0;   
} 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值