結果
問題 | No.1066 #いろいろな色 / Red and Blue and more various colors (Easy) |
ユーザー | risujiroh |
提出日時 | 2020-05-29 21:42:25 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 45 ms / 2,000 ms |
コード長 | 1,549 bytes |
コンパイル時間 | 2,150 ms |
コンパイル使用メモリ | 204,132 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-11-06 03:12:56 |
合計ジャッジ時間 | 3,298 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,820 KB |
testcase_04 | AC | 2 ms
6,820 KB |
testcase_05 | AC | 2 ms
6,816 KB |
testcase_06 | AC | 2 ms
6,816 KB |
testcase_07 | AC | 2 ms
6,816 KB |
testcase_08 | AC | 17 ms
6,816 KB |
testcase_09 | AC | 2 ms
6,816 KB |
testcase_10 | AC | 43 ms
6,820 KB |
testcase_11 | AC | 11 ms
6,816 KB |
testcase_12 | AC | 9 ms
6,820 KB |
testcase_13 | AC | 11 ms
6,816 KB |
testcase_14 | AC | 11 ms
6,816 KB |
testcase_15 | AC | 29 ms
6,816 KB |
testcase_16 | AC | 6 ms
6,820 KB |
testcase_17 | AC | 7 ms
6,820 KB |
testcase_18 | AC | 26 ms
6,816 KB |
testcase_19 | AC | 10 ms
6,820 KB |
testcase_20 | AC | 2 ms
6,820 KB |
testcase_21 | AC | 20 ms
6,816 KB |
testcase_22 | AC | 2 ms
6,824 KB |
testcase_23 | AC | 2 ms
6,816 KB |
testcase_24 | AC | 2 ms
6,820 KB |
testcase_25 | AC | 45 ms
6,816 KB |
testcase_26 | AC | 45 ms
6,816 KB |
ソースコード
#include <bits/stdc++.h>using namespace std;#ifdef LOCAL#include "debug.h"#else#define DEBUG(...)#endiftemplate <class T, class Op = multiplies<T>>constexpr T power(T a, long long n, Op op = Op(), T e = {1}) {assert(n >= 0);while (n) {if (n & 1) e = op(e, a);if (n >>= 1) a = op(a, a);}return e;}template <unsigned M> struct modular {using m = modular;static constexpr unsigned mod = M;unsigned v;modular(long long x = 0) : v((x %= mod) < 0 ? x + mod : x) {}m operator-() const { return m() -= *this; }m& operator+=(m b) { if ((int)(v += b.v - mod) < 0) v += mod; return *this; }m& operator-=(m b) { if ((int)(v -= b.v) < 0) v += mod; return *this; }m& operator*=(m b) { v = (uint64_t)v * b.v % mod; return *this; }m& operator/=(m b) { return *this *= power(b, mod - 2); }friend m operator+(m a, m b) { return a += b; }friend m operator-(m a, m b) { return a -= b; }friend m operator*(m a, m b) { return a *= b; }friend m operator/(m a, m b) { return a /= b; }friend bool operator==(m a, m b) { return a.v == b.v; }};using mint = modular<998244353>;int main() {cin.tie(nullptr);ios::sync_with_stdio(false);int n, q;cin >> n >> q;vector<mint> dp(n + 1);dp[0] = 1;for (int i = 0; i < n; ++i) {int a;cin >> a;vector<mint> ndp(n + 1);for (int x = 0; x <= i; ++x) {ndp[x + 1] += dp[x];ndp[x] += dp[x] * (a - 1);}swap(dp, ndp);}while (q--) {int b;cin >> b;cout << dp[b].v << '\n';}}