結果
問題 | No.206 数の積集合を求めるクエリ |
ユーザー | homesentinel |
提出日時 | 2019-09-04 22:44:26 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 203 ms / 7,000 ms |
コード長 | 3,618 bytes |
コンパイル時間 | 1,175 ms |
コンパイル使用メモリ | 121,936 KB |
実行使用メモリ | 13,952 KB |
最終ジャッジ日時 | 2024-06-09 12:24:19 |
合計ジャッジ時間 | 4,986 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 1 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 3 ms
6,940 KB |
testcase_07 | AC | 3 ms
6,944 KB |
testcase_08 | AC | 4 ms
6,940 KB |
testcase_09 | AC | 3 ms
6,944 KB |
testcase_10 | AC | 1 ms
6,944 KB |
testcase_11 | AC | 2 ms
6,944 KB |
testcase_12 | AC | 7 ms
6,940 KB |
testcase_13 | AC | 6 ms
6,944 KB |
testcase_14 | AC | 7 ms
6,940 KB |
testcase_15 | AC | 7 ms
6,940 KB |
testcase_16 | AC | 6 ms
6,940 KB |
testcase_17 | AC | 93 ms
13,756 KB |
testcase_18 | AC | 85 ms
13,720 KB |
testcase_19 | AC | 93 ms
13,872 KB |
testcase_20 | AC | 86 ms
13,824 KB |
testcase_21 | AC | 85 ms
13,740 KB |
testcase_22 | AC | 86 ms
13,828 KB |
testcase_23 | AC | 91 ms
13,760 KB |
testcase_24 | AC | 203 ms
13,868 KB |
testcase_25 | AC | 203 ms
13,720 KB |
testcase_26 | AC | 196 ms
13,952 KB |
testcase_27 | AC | 164 ms
13,844 KB |
testcase_28 | AC | 199 ms
13,840 KB |
testcase_29 | AC | 200 ms
13,732 KB |
testcase_30 | AC | 194 ms
13,876 KB |
ソースコード
#include <algorithm> #include <bitset> #include <complex> #include <deque> #include <exception> #include <fstream> #include <functional> #include <iomanip> #include <ios> #include <iosfwd> #include <iostream> #include <istream> #include <iterator> #include <limits> #include <list> #include <locale> #include <map> #include <memory> #include <new> #include <numeric> #include <ostream> #include <queue> #include <set> #include <sstream> #include <stack> #include <stdexcept> #include <streambuf> #include <string> #include <typeinfo> #include <utility> #include <valarray> #include <vector> #include <climits> #include <cstring> #define rep(i, m, n) for(int i=int(m);i<int(n);i++) #define all(c) begin(c),end(c) template<typename T1, typename T2> inline void chmin(T1 &a, T2 b) { if (a > b) a = b; } template<typename T1, typename T2> inline void chmax(T1 &a, T2 b) { if (a < b) a = b; } //改造 typedef long long int ll; using ll = long long int; using ull = long long unsigned int; using Int = long long int; using namespace std; #define INF (1 << 30) - 1 #define INFl (ll)5e15 #define DEBUG 0 //デバッグする時1にしてね #define dump(x) cerr << #x << " = " << (x) << endl #define MOD 1000000007 //ここから編集する namespace FastFourierTransform { using C = complex<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 w, s, t; for (int i = 1; i < N; i <<= 1) { for (int k = 0; k < i; k++) { w = polar(1.0, PI / i * k); for (int j = 0; j < N; j += i * 2) { 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; } } } if (rev) for (int i = 0; i < N; i++) F[i] /= N; } vector<long long> Multiply(const vector<int> &A, const vector<int> &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<long long> X(A.size() + B.size() - 1); for (int i = 0; i < A.size() + B.size() - 1; i++) X[i] = F[i].real() + 0.5; return (X); } }; class Solve { public: void solve() { Int L, M, N; cin >> L >> M >> N; vector<int> A(N); vector<int> B(N); for (int i = 0; i < L; ++i) { Int tmp; cin >> tmp; tmp--; A[tmp]++; } for (int i = 0; i < M; ++i) { Int tmp; cin >> tmp; tmp--; B[tmp]++; } Int Q; cin >> Q; reverse(all(B)); auto C = FastFourierTransform::Multiply(A, B); for (int i = N - 1; i <= N + Q - 2; ++i) { cout << C[i] << endl; } } }; int main() { cin.tie(0); ios::sync_with_stdio(false); cout << fixed << setprecision(10); Solve().solve(); return 0; }