結果
問題 | No.206 数の積集合を求めるクエリ |
ユーザー | tempura_pp |
提出日時 | 2018-06-27 00:58:35 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 100 ms / 7,000 ms |
コード長 | 1,671 bytes |
コンパイル時間 | 834 ms |
コンパイル使用メモリ | 93,884 KB |
実行使用メモリ | 23,152 KB |
最終ジャッジ日時 | 2024-06-30 23:02:27 |
合計ジャッジ時間 | 3,413 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,948 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 1 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 4 ms
6,944 KB |
testcase_07 | AC | 4 ms
6,940 KB |
testcase_08 | AC | 4 ms
6,940 KB |
testcase_09 | AC | 4 ms
6,944 KB |
testcase_10 | AC | 1 ms
6,944 KB |
testcase_11 | AC | 2 ms
6,944 KB |
testcase_12 | AC | 4 ms
6,944 KB |
testcase_13 | AC | 4 ms
6,940 KB |
testcase_14 | AC | 4 ms
6,944 KB |
testcase_15 | AC | 4 ms
6,944 KB |
testcase_16 | AC | 4 ms
6,940 KB |
testcase_17 | AC | 89 ms
22,896 KB |
testcase_18 | AC | 76 ms
22,860 KB |
testcase_19 | AC | 88 ms
23,120 KB |
testcase_20 | AC | 75 ms
22,916 KB |
testcase_21 | AC | 79 ms
22,868 KB |
testcase_22 | AC | 79 ms
22,864 KB |
testcase_23 | AC | 88 ms
22,892 KB |
testcase_24 | AC | 100 ms
23,152 KB |
testcase_25 | AC | 94 ms
22,868 KB |
testcase_26 | AC | 87 ms
22,848 KB |
testcase_27 | AC | 79 ms
23,124 KB |
testcase_28 | AC | 87 ms
23,096 KB |
testcase_29 | AC | 86 ms
22,948 KB |
testcase_30 | AC | 80 ms
22,876 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:71:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 71 | scanf("%d",&x); | ~~~~~^~~~~~~~~ main.cpp:76:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 76 | scanf("%d",&x); | ~~~~~^~~~~~~~~
ソースコード
#include<iostream> #include<string> #include<algorithm> #include<vector> #include<iomanip> #include<math.h> #include<complex> #include<queue> #include<deque> #include<map> #include<set> #include<bitset> using namespace std; #define REP(i,m,n) for(int i=(int)m ; i < (int) n ; i++ ) #define rep(i,n) REP(i,0,n) typedef long long ll; typedef pair<int,int> pint; const int inf=1e9+7; const ll longinf=1LL<<60 ; const ll mod=1e9+7 ; int dx[4]={1,0,-1,0} , dy[4]={0,1,0,-1} ; typedef vector<complex<double>> poly; const double pi=acos(-1); poly dft(poly f,int rev){ int n=f.size(); int j=0; REP(i,1,n-1){ for(int k=n/2;k>(j^=k);k>>=1); if(i<j)swap(f[i],f[j]); } for(int i=1;i<n;i<<=1){ complex<double>zeta=polar(1.0,pi/i*rev); for(int j=0;j<n;j+=2*i){ complex<double> ret=1; rep(k,i){ complex<double> s=f[j+k]; complex<double> t=f[j+k+i]; f[j+k]=s+t*ret; f[j+k+i]=s-t*ret; ret*=zeta; } } } if(rev==-1)rep(i,n)f[i]/=n; return f; } poly fft(poly g,poly h){ poly f; int m=(int)g.size()+h.size()+1; int sz=1; while(sz<m)sz*=2; f.resize(sz,0); g.resize(sz,0); h.resize(sz,0); g=dft(g,1); h=dft(h,1); rep(i,sz)f[i]=g[i]*h[i]; f=dft(f,-1); return f; } int main(){ int l,m,n; cin>>l>>m>>n; poly a,b; a.resize(n+1); b.resize(n+1); int x; rep(i,l){ scanf("%d",&x); a[x]=1; } rep(i,m){ scanf("%d",&x); b[n-x]=1; } poly c=fft(a,b); int q;cin>>q; rep(i,q)printf("%d\n",(int)(c[n+i].real()+0.5)); }