結果
問題 | No.754 畳み込みの和 |
ユーザー | kotatsugame |
提出日時 | 2019-09-26 21:40:13 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 483 ms / 5,000 ms |
コード長 | 2,631 bytes |
コンパイル時間 | 1,214 ms |
コンパイル使用メモリ | 82,968 KB |
実行使用メモリ | 11,268 KB |
最終ジャッジ日時 | 2024-09-24 06:23:12 |
合計ジャッジ時間 | 3,690 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 481 ms
11,224 KB |
testcase_01 | AC | 481 ms
11,268 KB |
testcase_02 | AC | 483 ms
11,268 KB |
コンパイルメッセージ
main.cpp:115:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type] 115 | main() | ^~~~
ソースコード
#include<iostream> using namespace std; #include<vector> long long invmod(long long a,long long m) { long long s=a%m,t=m,sx=1,sy=0,tx=0,ty=1; while(s%t!=0) { long long f=s/t; long long u=s-t*f,ux=sx-tx*f,uy=sy-ty*f; s=t,sx=tx,sy=ty; t=u,tx=ux,ty=uy; } if(tx<0)tx+=m; return tx; } //998244353,3 //469762049,3 //167772161,3 #include<vector> template<int mod,int proot> struct NTT{ vector<long long>pp,invpp;//memoize proot^(mod-1>>i) and inv long long power(long long a,int b) { long long ret=1; while(b) { if(b&1)ret=ret*a%mod; a=a*a%mod; b>>=1; } return ret; } void dft(vector<int>&A,bool sign,int id) { if(id==0)return; int N=1<<id-1; vector<int>F(N),G(N); for(int i=0;i<N;i++) { F[i]=A[i<<1]; G[i]=A[i<<1|1]; } dft(F,sign,id-1); dft(G,sign,id-1); long long z=(sign?invpp:pp)[id],p=1; for(int i=0;i<N;i++) { A[i]=(F[i]+p*G[i])%mod; A[i+N]=(F[i]-p*G[i])%mod; if(A[i+N]<0)A[i+N]+=mod; (p*=z)%=mod; } } vector<int>multiply(vector<int>A,vector<int>B) { if(A.empty()||B.empty()) { return(vector<int>){}; } int N=1,sz=0; vector<int>ret(A.size()+B.size()-1); while(N<ret.size())N<<=1,sz+=1; pp.resize(sz+1); invpp.resize(sz+1); pp[sz]=power(proot,mod-1>>sz); invpp[sz]=power(pp[sz],mod-2); for(int i=sz-1;i>0;i-=1) { pp[i]=pp[i+1]*pp[i+1]%mod; invpp[i]=invpp[i+1]*invpp[i+1]%mod; } A.resize(N); B.resize(N); dft(A,false,sz); dft(B,false,sz); for(int i=0;i<N;i++)A[i]=(long long)A[i]*B[i]%mod; dft(A,true,sz); long long invN=power(N,mod-2); for(int i=0;i<ret.size();i++)ret[i]=invN*A[i]%mod; return ret; } }; vector<int>multiply(vector<int>A,vector<int>B,const int mod) { for(int&a:A) { a%=mod; if(a<0)a+=mod; } for(int&b:B) { b%=mod; if(b<0)b+=mod; } vector<int>C1=NTT<998244353,3>().multiply(A,B); vector<int>C2=NTT<469762049,3>().multiply(A,B); vector<int>C3=NTT<167772161,3>().multiply(A,B); vector<int>C(C1.size()); for(int i=0;i<C.size();i++) { long v1=C1[i],v2,v3; v2=(C2[i]-v1)%469762049; if(v2<0)v2+=469762049; v2=v2*invmod(998244353%469762049,469762049)%469762049; v3=(C3[i]-v1)%167772161; (v3-=v2*998244353)%=167772161; if(v3<0)v3+=167772161; v3=v3*invmod(998244353LL%167772161*469762049%167772161,167772161)%167772161; C[i]=(v1+v2*998244353%mod+v3*998244353%mod*469762049%mod)%mod; } return C; } main() { int N; cin>>N; vector<int>A(N+1),B(N+1); for(int i=0;i<=N;i++)cin>>A[i]; for(int i=0;i<=N;i++)cin>>B[i]; long long mod=1e9+7; vector<int>C=multiply(A,B,mod); long long ans=0; for(int i=0;i<=N;i++)(ans+=C[i])%=mod; cout<<ans<<endl; }