結果
問題 | No.2272 多項式乗算 mod 258280327 |
ユーザー | MarioYC |
提出日時 | 2023-04-14 23:10:40 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,410 bytes |
コンパイル時間 | 2,425 ms |
コンパイル使用メモリ | 211,684 KB |
実行使用メモリ | 11,724 KB |
最終ジャッジ日時 | 2024-10-10 14:15:08 |
合計ジャッジ時間 | 34,737 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 904 ms
9,600 KB |
testcase_01 | AC | 903 ms
10,312 KB |
testcase_02 | AC | 905 ms
11,336 KB |
testcase_03 | AC | 901 ms
10,188 KB |
testcase_04 | AC | 901 ms
10,064 KB |
testcase_05 | AC | 905 ms
10,828 KB |
testcase_06 | AC | 902 ms
10,820 KB |
testcase_07 | AC | 899 ms
11,464 KB |
testcase_08 | AC | 906 ms
10,572 KB |
testcase_09 | AC | 898 ms
10,064 KB |
testcase_10 | AC | 901 ms
10,184 KB |
testcase_11 | AC | 904 ms
10,060 KB |
testcase_12 | AC | 898 ms
10,696 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 900 ms
9,928 KB |
testcase_17 | WA | - |
testcase_18 | AC | 903 ms
9,672 KB |
testcase_19 | AC | 899 ms
9,808 KB |
testcase_20 | AC | 898 ms
10,060 KB |
testcase_21 | AC | 909 ms
9,804 KB |
testcase_22 | AC | 904 ms
10,316 KB |
testcase_23 | AC | 902 ms
9,680 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; const int mod = 258280327; #pragma GCC optimize("Ofast,unroll-loops") #pragma GCC target("avx,avx2,fma") namespace { template<int n, typename T> void mult(const T *__restrict a, const T *__restrict b, T *__restrict res) { if (n <= 64) { // if length is small then naive multiplication if faster for (int i = 0; i < n; i++) { for (int j = 0; j < n; j++) { res[i + j] += a[i] * b[j]; res[i + j] %= mod; } } } else { // cout << n << endl; const int mid = n / 2; alignas(64) T btmp[n], E[n] = {}; auto atmp = btmp + mid; for (int i = 0; i < mid; i++) { atmp[i] = a[i] + a[i + mid]; // atmp(x) - sum of two halfs a(x) atmp[i] %= mod; btmp[i] = b[i] + b[i + mid]; // btmp(x) - sum of two halfs b(x) btmp[i] %= mod; } // cout << "sum" << endl; mult<mid>(atmp, btmp, E); // Calculate E(x) = (alow(x) + ahigh(x)) * (blow(x) + bhigh(x)) // cout << "mult1" << endl; mult<mid>(a + 0, b + 0, res); // Calculate rlow(x) = alow(x) * blow(x) // cout << "mult2" << endl; mult<mid>(a + mid, b + mid, res + n); // Calculate rhigh(x) = ahigh(x) * bhigh(x) // cout << "mult3" << endl; for (int i = 0; i < mid; i++) { // Then, calculate rmid(x) = E(x) - rlow(x) - rhigh(x) and write in memory const auto tmp = res[i + mid]; res[i + mid] += E[i] - res[i] - res[i + 2 * mid]; res[i + mid] %= mod; res[i + 2 * mid] += E[i + mid] - tmp - res[i + 3 * mid]; res[i + 2 * mid] %= mod; } // cout << "done" << endl; } } } const int nmax = (1 << 18); int a[nmax],b[nmax],ret[2 * nmax]; int main(){ int n,m; cin >> n; for(int i = 0;i <= n;++i) cin >> a[i]; cin >> m; for(int i = 0;i <= m;++i) cin >> b[i]; int sz = 1; while((1 << sz) < max(n,m)) ++sz; mult<nmax, int>(a, b, ret); cout << n + m << endl; for(int i = 0;i <= n + m;++i){ auto x = ret[i]; if(ret[i] < 0) ret[i] += mod; cout << x << ' '; } cout << endl; return 0; }