結果
問題 | No.206 数の積集合を求めるクエリ |
ユーザー | ctyl_0 |
提出日時 | 2015-09-14 00:07:12 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 309 ms / 7,000 ms |
コード長 | 2,754 bytes |
コンパイル時間 | 844 ms |
コンパイル使用メモリ | 91,604 KB |
実行使用メモリ | 37,220 KB |
最終ジャッジ日時 | 2024-07-19 06:24:30 |
合計ジャッジ時間 | 6,647 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 8 ms
5,376 KB |
testcase_07 | AC | 8 ms
5,376 KB |
testcase_08 | AC | 8 ms
5,376 KB |
testcase_09 | AC | 8 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 1 ms
5,376 KB |
testcase_12 | AC | 9 ms
5,376 KB |
testcase_13 | AC | 9 ms
5,376 KB |
testcase_14 | AC | 8 ms
5,376 KB |
testcase_15 | AC | 8 ms
5,376 KB |
testcase_16 | AC | 9 ms
5,376 KB |
testcase_17 | AC | 300 ms
37,216 KB |
testcase_18 | AC | 273 ms
37,088 KB |
testcase_19 | AC | 297 ms
37,212 KB |
testcase_20 | AC | 278 ms
37,216 KB |
testcase_21 | AC | 282 ms
37,092 KB |
testcase_22 | AC | 280 ms
37,216 KB |
testcase_23 | AC | 298 ms
37,216 KB |
testcase_24 | AC | 309 ms
37,216 KB |
testcase_25 | AC | 308 ms
37,220 KB |
testcase_26 | AC | 291 ms
37,220 KB |
testcase_27 | AC | 278 ms
37,088 KB |
testcase_28 | AC | 297 ms
37,088 KB |
testcase_29 | AC | 296 ms
37,084 KB |
testcase_30 | AC | 275 ms
37,084 KB |
ソースコード
#include <iostream> #include <iomanip> #include <vector> #include <algorithm> #include <numeric> #include <functional> #include <cmath> #include <queue> #include <stack> #include <complex> #define repd(i,a,b) for (int i=(a);i<(b);i++) #define rep(i,n) repd(i,0,n) using namespace std; typedef long long ll; typedef complex<double> cmpd; int inputValue(){ int a; cin >> a; return a; }; void inputArray(int * p, int a){ rep(i, a){ cin >> p[i]; } }; void inputVector(vector<int> * p, int a){ rep(i, a){ int input; cin >> input; p -> push_back(input); } } template <typename T> void output(T a, int precision) { if(precision > 0){ cout << setprecision(precision) << a << "\n"; } else{ cout << a << "\n"; } } // 高速フーリエ変換 vector<cmpd> dft(vector<cmpd> & f, int deg, bool dir){ // 終了条件 if (deg == 1) { return f; } // 半分の長さのf0, f1をつくる vector<cmpd> f0(deg >> 1), f1(deg >> 1); // f0: 奇数番目, f1: 偶数番目 rep(i, deg >> 1){ f0[i] = f[i << 1]; f1[i] = f[i << 1 | 1]; } // それぞれについてdft f0 = dft(f0 , deg >> 1, dir); f1 = dft(f1 , deg >> 1, dir); // dir: 順変換ならtrue, 逆変換ならfalse cmpd zeta = (dir == true) ? polar<double>(1, 2 * M_PI / deg) : polar<double>(1, -2 * M_PI / deg); cmpd pow_zeta(1); rep(i, deg){ f[i] = f0[i % (deg >> 1)] + pow_zeta * f1[i % (deg >> 1)]; pow_zeta *= zeta; } return f; } vector<cmpd> idft(vector<cmpd> & f, int deg){ // fのサイズは整形されている vector<cmpd> ret = dft(f, deg, false); rep(i, deg){ ret[i] /= deg; } return ret; } // 多項式乗算 vector<cmpd> multipoly (vector<cmpd> & a, vector<cmpd> & b){ // 多項式を2^n次に整形.係数が0のところは0詰め int nmax = (int)a.size() + (int)b.size() - 1; int n = 1; while(n < nmax) n <<= 1; a.resize(n); b.resize(n); vector<cmpd> fc(n); vector<cmpd> fa = dft(a, n, true); vector<cmpd> fb = dft(b, n, true); rep(i, n){ fc[i] = fa[i] * fb[i]; } return idft(fc, n); } int main(int argc, const char * argv[]) { // source code int L = inputValue(); int M = inputValue(); int N = inputValue(); N++; vector<cmpd> A(N); rep(i, L){ A[inputValue()] = 1; } vector<cmpd> B(N); rep(i, M){ B[N - inputValue()] = 1; } int Q = inputValue(); auto C = multipoly(A, B); repd(i, N, N + Q){ output((int)(C[i].real() + 0.5), 0); } return 0; }