結果
問題 | No.206 数の積集合を求めるクエリ |
ユーザー | Pulmn |
提出日時 | 2018-07-20 11:21:50 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 283 ms / 7,000 ms |
コード長 | 1,770 bytes |
コンパイル時間 | 1,436 ms |
コンパイル使用メモリ | 164,968 KB |
実行使用メモリ | 9,852 KB |
最終ジャッジ日時 | 2024-06-07 19:37:53 |
合計ジャッジ時間 | 6,286 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 5 ms
5,376 KB |
testcase_07 | AC | 5 ms
5,376 KB |
testcase_08 | AC | 4 ms
5,376 KB |
testcase_09 | AC | 5 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 9 ms
5,376 KB |
testcase_13 | AC | 8 ms
5,376 KB |
testcase_14 | AC | 9 ms
5,376 KB |
testcase_15 | AC | 8 ms
5,376 KB |
testcase_16 | AC | 8 ms
5,376 KB |
testcase_17 | AC | 152 ms
9,724 KB |
testcase_18 | AC | 128 ms
9,852 KB |
testcase_19 | AC | 149 ms
9,592 KB |
testcase_20 | AC | 129 ms
9,600 KB |
testcase_21 | AC | 133 ms
9,604 KB |
testcase_22 | AC | 132 ms
9,596 KB |
testcase_23 | AC | 150 ms
9,724 KB |
testcase_24 | AC | 283 ms
9,596 KB |
testcase_25 | AC | 277 ms
9,592 KB |
testcase_26 | AC | 262 ms
9,600 KB |
testcase_27 | AC | 218 ms
9,596 KB |
testcase_28 | AC | 257 ms
9,728 KB |
testcase_29 | AC | 257 ms
9,644 KB |
testcase_30 | AC | 245 ms
9,596 KB |
ソースコード
#include <bits/stdc++.h> #define syosu(x) fixed<<setprecision(x) using namespace std; typedef long long ll; typedef unsigned long long ull; typedef pair<int,int> P; typedef pair<double,double> pdd; typedef pair<ll,ll> pll; typedef vector<int> vi; typedef vector<vi> vvi; typedef vector<double> vd; typedef vector<vd> vvd; typedef vector<ll> vl; typedef vector<vl> vvl; typedef vector<string> vs; typedef vector<P> vp; typedef vector<vp> vvp; typedef vector<pll> vpll; typedef pair<int,P> pip; typedef vector<pip> vip; const int inf=1<<30; const ll INF=1ll<<60; const double pi=acos(-1); const double eps=1e-8; const ll mod=1e9+7; const int dx[4]={-1,0,1,0},dy[4]={0,-1,0,1}; const ll p=924844033,r=5; ll Pow(ll n,ll m){ ll res=1; while(m>0){ if(m&1) (res*=n)%=p; (n*=n)%=p; m>>=1; } return res; } ll Inv(ll x){return Pow(x,p-2);} void ntt(vl& a,bool B){ int n=a.size(),h=0; while(1<<h<n) h++; for(int i=0;i<n;i++){ int j=0; for(int k=0;k<h;k++) if(i&1<<k) j+=1<<(h-k-1); if(i<j) swap(a[i],a[j]); } for(int i=1;i<n;i*=2){ ll w=Pow(r,(p-1)/(i*2)); if(B) w=Inv(w); for(int j=0;j<n;j+=i*2){ ll wn=1; for(int k=0;k<i;k++){ ll s=a[j+k],t=a[i+j+k]*wn%p; a[j+k]=(s+t)%p; a[i+j+k]=(s-t+p)%p; (wn*=w)%=p; } } } if(B){ ll v=Inv(n); for(int i=0;i<n;i++) (a[i]*=v)%=p; } } vl Conv(vl a,vl b){ int s=a.size()+b.size()-1,t=1; while(t<s) t*=2; a.resize(t); b.resize(t); ntt(a,0);ntt(b,0); for(int i=0;i<t;i++) (a[i]*=b[i])%=p; ntt(a,1); a.resize(s); return a; } int n,m,N,q; vl a,b; int main(){ cin>>n>>m>>N; a=b=vl(N); for(int i=0;i<n;i++){ int A; cin>>A; a[A-1]++; } for(int i=0;i<m;i++){ int A; cin>>A; b[N-A]++; } vl c=Conv(a,b); cin>>q; for(int i=N-1;i<N+q-1;i++) cout<<c[i]<<endl; }