結果

問題 No.206 数の積集合を求めるクエリ
ユーザー utsumi_pgutsumi_pg
提出日時 2021-02-12 06:25:43
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 522 ms / 7,000 ms
コード長 1,675 bytes
コンパイル時間 1,035 ms
コンパイル使用メモリ 88,392 KB
実行使用メモリ 33,652 KB
最終ジャッジ日時 2024-07-18 16:53:11
合計ジャッジ時間 9,092 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 14 ms
5,376 KB
testcase_07 AC 14 ms
5,376 KB
testcase_08 AC 15 ms
5,376 KB
testcase_09 AC 15 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 15 ms
5,376 KB
testcase_13 AC 15 ms
5,376 KB
testcase_14 AC 14 ms
5,376 KB
testcase_15 AC 14 ms
5,376 KB
testcase_16 AC 15 ms
5,376 KB
testcase_17 AC 508 ms
33,524 KB
testcase_18 AC 491 ms
33,520 KB
testcase_19 AC 497 ms
33,528 KB
testcase_20 AC 490 ms
33,520 KB
testcase_21 AC 495 ms
33,528 KB
testcase_22 AC 494 ms
33,444 KB
testcase_23 AC 521 ms
33,392 KB
testcase_24 AC 511 ms
33,520 KB
testcase_25 AC 512 ms
33,508 KB
testcase_26 AC 500 ms
33,524 KB
testcase_27 AC 497 ms
33,652 KB
testcase_28 AC 499 ms
33,396 KB
testcase_29 AC 522 ms
33,392 KB
testcase_30 AC 502 ms
33,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <vector>
#include <complex>
#include <cmath>
using namespace std;
 
int L, M, N;
int Q;
 
vector<complex<double>> DFT(vector<complex<double>> f, bool inverse){
	if(f.size() == 1) return f;
	vector<complex<double>> va, vb;
	for(int i = 0; i < f.size(); i++){
		if(i % 2 == 0) va.push_back(f[i]);
		else vb.push_back(f[i]);
	}
	va = DFT(va, inverse);
	vb = DFT(vb, inverse);
	double c = inverse ? 1.0 : -1.0;
	complex<double> cur = complex<double>(1.0, 0.0);
	complex<double> zeta = polar(1.0, c * acos(0.0) * 4.0 / (double)f.size());
	vector<complex<double>> res;
	for(int i = 0; i < f.size(); i++){
		res.push_back(va[i % (f.size() / 2)] + cur * vb[i % (f.size() / 2)]);
		cur *= zeta;
	}
	return res;
 
}
 
vector<double> FFT(vector<double> f, vector<double> g){
	vector<complex<double>> cf, cg;
	int n = 1;
	for(;;){
		if(n >= f.size() + g.size()) break;
		n *= 2;
	}
	cf.resize(n);
	cg.resize(n);
	for(int i = 0; i < f.size(); i++) cf[i] = complex<double>(f[i], 0.0);
	for(int i = 0; i < g.size(); i++) cg[i] = complex<double>(g[i], 0.0);
	cf = DFT(cf, true);
	cg = DFT(cg, true);
	for(int i = 0; i < n; i++) cf[i] *= cg[i];
	cf = DFT(cf, false);
	vector<double> res;
	for(int i = 0; i < n; i++) res.push_back(cf[i].real() / (double)n);
	return res;
}
 
int main(){
	scanf("%d %d %d", &L, &M, &N);
	vector<double> va(N), vb(N);
	for(int i = 0; i < L; i++){
		int a;
		scanf("%d", &a);
		a--;
		va[a] += 1.0;
	}
	for(int i = 0; i < M; i++){
		int a;
		scanf("%d", &a);
		a--;
		vb[N - a - 1] += 1.0;
	}
	vector<double> c = FFT(va, vb);
	scanf("%d", &Q);
	for(int i = 0; i < Q; i++) printf("%d\n", (int)floor(c[i + N - 1] + 0.0001));
	return 0;
}
0