結果
問題 | No.206 数の積集合を求めるクエリ |
ユーザー | ei1333333 |
提出日時 | 2017-11-17 01:38:59 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,981 bytes |
コンパイル時間 | 2,647 ms |
コンパイル使用メモリ | 207,636 KB |
実行使用メモリ | 23,168 KB |
最終ジャッジ日時 | 2024-05-04 01:16:11 |
合計ジャッジ時間 | 8,620 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
コンパイルメッセージ
main.cpp: In function 'std::vector<long long int> FastFourierTransform::Multiply(const std::vector<long long int>&, const std::vector<long long int>&)': main.cpp:52:3: warning: no return statement in function returning non-void [-Wreturn-type] 52 | } | ^
ソースコード
#include<bits/stdc++.h> using namespace std; using int64 = long long; namespace FastFourierTransform { using C = complex< long double >; void DiscreteFourierTransform(vector< C > &F, bool rev) { const int N = (int) F.size(); const double PI = (rev ? -1 : 1) * acos(-1); for(int i = 0, j = 1; j + 1 < N; j++) { for(int k = N >> 1; k > (i ^= k); k >>= 1); if(i > j) swap(F[i], F[j]); } C wr, w, s, t; for(int i = 1; i < N; i <<= 1) { wr = polar(1.0, PI / i); for(int j = 0; j < N; j += i * 2) { w = 1.0; for(int k = 0; k < i; k++) { s = F[j + k]; t = C(F[j + k + i].real() * w.real() - F[j + k + i].imag() * w.imag(), F[j + k + i].real() * w.imag() + F[j + k + i].imag() * w.real()); F[j + k] = s + t, F[j + k + i] = s - t; w *= wr; } } } if(rev) { double temp = 1.0 / N; for(int i = 0; i < N; i++) F[i] *= temp; } } vector< int64 > Multiply(const vector< int64 > &A, const vector< int64 > &B) { int sz = 1; while(sz < A.size() + B.size() - 1) sz <<= 1; vector< C > F(sz), G(sz); for(int i = 0; i < A.size(); i++) F[i] = A[i]; for(int i = 0; i < B.size(); i++) G[i] = B[i]; DiscreteFourierTransform(F, false); DiscreteFourierTransform(G, false); for(int i = 0; i < sz; i++) F[i] *= G[i]; DiscreteFourierTransform(F, true); vector< int64 > X(A.size() + B.size() - 1); for(int i = 0; i < A.size() + B.size() - 1; i++) X[i] = F[i].real() + 0.5; } }; int main() { int N, M, P; scanf("%d %d %d", &N, &M, &P); vector< int64 > A(P), B(P); for(int i = 0; i < N; i++) { int x; scanf("%d", &x); A[x - 1] = 1; } for(int i = 0; i < M; i++) { int x; scanf("%d", &x); B[x - 1] = 1; } reverse(begin(B), end(B)); auto C = FastFourierTransform::Multiply(A, B); int Q; scanf("%d", &Q); for(int i = 0; i < Q; i++) printf("%lld\n", C[P + i - 1]); }