結果
問題 | No.1068 #いろいろな色 / Red and Blue and more various colors (Hard) |
ユーザー | miscalc |
提出日時 | 2022-10-05 01:42:33 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,612 bytes |
コンパイル時間 | 4,847 ms |
コンパイル使用メモリ | 276,840 KB |
実行使用メモリ | 26,340 KB |
最終ジャッジ日時 | 2024-06-09 19:24:58 |
合計ジャッジ時間 | 12,514 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,812 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 5 ms
6,944 KB |
testcase_04 | AC | 5 ms
6,940 KB |
testcase_05 | AC | 5 ms
6,944 KB |
testcase_06 | AC | 4 ms
6,940 KB |
testcase_07 | AC | 3 ms
6,944 KB |
testcase_08 | AC | 5 ms
6,940 KB |
testcase_09 | AC | 5 ms
6,940 KB |
testcase_10 | AC | 3 ms
6,944 KB |
testcase_11 | AC | 3 ms
6,940 KB |
testcase_12 | AC | 3 ms
6,940 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | AC | 286 ms
26,076 KB |
testcase_30 | AC | 285 ms
26,152 KB |
testcase_31 | AC | 2 ms
6,944 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; using ld = long double; using pll = pair<ll, ll>; using tlll = tuple<ll, ll, ll>; constexpr ll INF = 1LL << 60; template<class T> bool chmin(T& a, T b) {if (a > b) {a = b; return true;} return false;} template<class T> bool chmax(T& a, T b) {if (a < b) {a = b; return true;} return false;} ll safemod(ll A, ll M) {ll res = A % M; if (res < 0) res += M; return res;} ll divfloor(ll A, ll B) {if (B < 0) {return divfloor(-A, -B);} return (A - safemod(A, B)) / B;} ll divceil(ll A, ll B) {if (B < 0) {return divceil(-A, -B);} return divfloor(A + B - 1, B);} ll pow_ll(ll A, ll B) {if (A == 0 || A == 1) {return A;} if (A == -1) {return B & 1 ? -1 : 1;} ll res = 1; for (int i = 0; i < B; i++) {res *= A;} return res;} ll logfloor(ll A, ll B) {assert(A >= 2); ll res = 0; for (ll tmp = 1; tmp <= B / A; tmp *= A) {res++;} return res;} ll logceil(ll A, ll B) {assert(A >= 2); ll res = 0; for (ll tmp = 1; tmp < B; tmp *= A) {res++;} return res;} ll arisum_ll(ll a, ll d, ll n) { return n * a + (n & 1 ? ((n - 1) >> 1) * n : (n >> 1) * (n - 1)) * d; } ll arisum2_ll(ll a, ll l, ll n) { return n & 1 ? ((a + l) >> 1) * n : (n >> 1) * (a + l); } ll arisum3_ll(ll a, ll l, ll d) { assert((l - a) % d == 0); return arisum2_ll(a, l, (l - a) / d + 1); } template<class T> void unique(vector<T> &V) {V.erase(unique(V.begin(), V.end()), V.end());} template<class T> void sortunique(vector<T> &V) {sort(V.begin(), V.end()); V.erase(unique(V.begin(), V.end()), V.end());} #define FINALANS(A) do {cout << (A) << '\n'; exit(0);} while (false) template<class T> void printvec(const vector<T> &V) {int _n = V.size(); for (int i = 0; i < _n; i++) cout << V[i] << (i == _n - 1 ? "" : " ");cout << '\n';} template<class T> void printvect(const vector<T> &V) {for (auto v : V) cout << v << '\n';} template<class T> void printvec2(const vector<vector<T>> &V) {for (auto &v : V) printvec(v);} //* #include <atcoder/all> using namespace atcoder; using mint = modint998244353; //using mint = modint1000000007; //using mint = modint; //*/ template<class T> vector<T> convolution_many(const vector<vector<T>> &fs) { if (fs.size() == 0) return {1}; deque<vector<T>> deq; for (auto f : fs) deq.push_back(f); while ((int)deq.size() > 1) { auto f = deq.front(); deq.pop_front(); auto g = deq.front(); deq.pop_front(); deq.push_back(convolution(f, g)); } return deq.front(); } /* template<class T> vector<T> convolution_many(const vector<vector<T>> &fs) { if (fs.size() == 0) return {1}; auto res = vector<vector<T>>(fs); while (res.size() > 1) { vector<vector<T>> nxt; for (int i = 0; i < (int)res.size(); i += 2) { if (i + 1 < (int)res.size()) nxt.emplace_back(convolution(res[i], res[i + 1])); else nxt.emplace_back(res[i]); } res = nxt; } return res.front(); } //*/ template<class T = mint> vector<T> stirling1(const int N) { vector<vector<T>> fs(divceil(N, 2)); for (int i = 0; i < N; i += 2) { if (i + 1 < N) fs[i / 2] = {T::raw(i) * T::raw(i + 1), -2 * T::raw(i) - 1, 1}; else fs[i / 2] = {-T::raw(i), 1}; } return convolution_many(fs); } int main() { cin.tie(0); ios::sync_with_stdio(false); int N, Q; cin >> N >> Q; vector<int> A(N); for (int i = 0; i < N; i++) { cin >> A[i]; } vector<vector<mint>> fs(N); for (int i = 0; i < N; i++) { fs[i] = {A[i] - 1, 1}; } auto g = convolution_many(fs); while (Q--) { int b; cin >> b; mint ans = g[b]; cout << ans.val() << '\n'; } }