結果
問題 | No.206 数の積集合を求めるクエリ |
ユーザー | Arc |
提出日時 | 2019-10-02 16:42:55 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 433 ms / 7,000 ms |
コード長 | 2,634 bytes |
コンパイル時間 | 1,084 ms |
コンパイル使用メモリ | 106,928 KB |
実行使用メモリ | 47,508 KB |
最終ジャッジ日時 | 2024-10-03 06:01:29 |
合計ジャッジ時間 | 8,041 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 1 ms
6,820 KB |
testcase_05 | AC | 1 ms
6,816 KB |
testcase_06 | AC | 9 ms
6,816 KB |
testcase_07 | AC | 8 ms
6,820 KB |
testcase_08 | AC | 9 ms
6,820 KB |
testcase_09 | AC | 10 ms
6,816 KB |
testcase_10 | AC | 2 ms
6,820 KB |
testcase_11 | AC | 2 ms
6,820 KB |
testcase_12 | AC | 12 ms
6,816 KB |
testcase_13 | AC | 12 ms
6,816 KB |
testcase_14 | AC | 13 ms
6,820 KB |
testcase_15 | AC | 14 ms
6,820 KB |
testcase_16 | AC | 13 ms
6,816 KB |
testcase_17 | AC | 302 ms
47,416 KB |
testcase_18 | AC | 290 ms
47,412 KB |
testcase_19 | AC | 300 ms
47,508 KB |
testcase_20 | AC | 300 ms
47,284 KB |
testcase_21 | AC | 297 ms
47,312 KB |
testcase_22 | AC | 291 ms
47,416 KB |
testcase_23 | AC | 298 ms
47,404 KB |
testcase_24 | AC | 433 ms
47,284 KB |
testcase_25 | AC | 428 ms
47,300 KB |
testcase_26 | AC | 419 ms
47,328 KB |
testcase_27 | AC | 372 ms
47,288 KB |
testcase_28 | AC | 415 ms
47,372 KB |
testcase_29 | AC | 412 ms
47,400 KB |
testcase_30 | AC | 403 ms
47,336 KB |
ソースコード
#include <algorithm> #include <cassert> #include <cmath> #include <cstdio> #include <deque> #include <iomanip> #include <iostream> #include <map> #include <queue> #include <set> #include <stack> #include <unordered_map> #include <unordered_set> #include <utility> #include <vector> #include <cfloat> #include<complex> //Copy from this line! typedef std::complex<double> Complex; std::vector<Complex> DFT(std::vector<Complex> func, int size, int sign){ if(size==1) return func; std::vector<Complex> result(size); std::vector<Complex> func_a(size/2); std::vector<Complex> func_b(size/2); for(int i=0;i<size/2;i++){ func_a[i]=func[2*i]; func_b[i]=func[2*i+1]; } func_a=DFT(func_a,size/2,sign); func_b=DFT(func_b,size/2,sign); Complex zeta(cos(2.0*M_PI/size),sin(2.0*M_PI/size)*sign); Complex zeta_pow(1); for(int i=0;i<size;i++){ result[i]=func_a[i%(size/2)]+zeta_pow*func_b[i%(size/2)]; zeta_pow*=zeta; } return result; } std::vector<Complex> InvDFT(std::vector<Complex> func, int size){ std::vector<Complex> result=DFT(func, size, -1); for(int i=0;i<size;i++){ result[i]/=size; } return result; } std::vector<Complex> MultyplyFunction(std::vector<Complex> func_f, std::vector<Complex> func_g){ int min_size=func_f.size()+func_g.size()+1; int size=1; while(size<min_size){ size*=2; } func_f.resize(size); func_g.resize(size); func_f=DFT(func_f,size,1); func_g=DFT(func_g,size,1); std::vector<Complex> func(size); for(int i=0;i<size;i++){ func[i]=func_f[i]*func_g[i]; } return InvDFT(func,size); } // int main(void){ // int n; // cin>>n; // std::vector<std::complex<double>> a(n+1),b(n+1); // a[0]=std::complex<double>(0); // b[0]=std::complex<double>(0); // for(int i=1;i<=n;i++){ // int x,y; // cin>>x>>y; // a[i]=std::complex<double>(x); // b[i]=std::complex<double>(y); // } // std::vector<std::complex<double>> c=MultyplyFunction(a,b); // for(int i=1;i<=2*n;i++){ // cout<<lround(c[i].real())<<endl; // } // } using std::cerr; using std::cin; using std::cout; using std::endl; int main(){ cout << std::fixed << std::setprecision(16); cin.tie(nullptr); std::ios::sync_with_stdio(false); int l,m,n; cin>>l>>m>>n; std::vector<Complex> a(n+1); std::vector<Complex> b(n+1); for(int i=0;i<l;i++){ int v; cin>>v; a[v]=Complex(1); } for(int i=0;i<m;i++){ int v; cin>>v; b[n-v]=Complex(1); } int q; cin>>q; std::vector<Complex> result=MultyplyFunction(a,b); for(int i=n;i<n+q;i++){ cout<<lround(result[i].real())<<endl; } return 0; }