結果
問題 | No.1289 RNG and OR |
ユーザー | hitonanode |
提出日時 | 2020-11-14 00:25:02 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 111 ms / 2,000 ms |
コード長 | 2,866 bytes |
コンパイル時間 | 843 ms |
コンパイル使用メモリ | 76,888 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-22 22:26:34 |
合計ジャッジ時間 | 1,766 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 3 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,944 KB |
testcase_10 | AC | 2 ms
6,944 KB |
testcase_11 | AC | 2 ms
6,944 KB |
testcase_12 | AC | 2 ms
6,940 KB |
testcase_13 | AC | 3 ms
6,944 KB |
testcase_14 | AC | 4 ms
6,940 KB |
testcase_15 | AC | 5 ms
6,940 KB |
testcase_16 | AC | 9 ms
6,944 KB |
testcase_17 | AC | 15 ms
6,940 KB |
testcase_18 | AC | 29 ms
6,940 KB |
testcase_19 | AC | 57 ms
6,940 KB |
testcase_20 | AC | 111 ms
6,940 KB |
ソースコード
#include <iostream> #include <numeric> #include <vector> using namespace std; template <int mod> struct ModInt { using lint = long long; int val; constexpr ModInt() : val(0) {} constexpr ModInt &_setval(lint v) { val = (v >= mod ? v - mod : v); return *this; } constexpr ModInt(lint v) { _setval(v % mod + mod); } explicit operator bool() const { return val != 0; } constexpr ModInt operator+(const ModInt &x) const { return ModInt()._setval((lint)val + x.val); } constexpr ModInt operator-(const ModInt &x) const { return ModInt()._setval((lint)val - x.val + mod); } constexpr ModInt operator*(const ModInt &x) const { return ModInt()._setval((lint)val * x.val % mod); } constexpr ModInt operator/(const ModInt &x) const { return ModInt()._setval((lint)val * x.inv() % mod); } constexpr ModInt operator-() const { return ModInt()._setval(mod - val); } constexpr ModInt &operator+=(const ModInt &x) { return *this = *this + x; } constexpr ModInt &operator-=(const ModInt &x) { return *this = *this - x; } constexpr ModInt &operator*=(const ModInt &x) { return *this = *this * x; } constexpr ModInt &operator/=(const ModInt &x) { return *this = *this / x; } friend std::istream &operator>>(std::istream &is, ModInt &x) { lint t; is >> t; x = ModInt(t); return is; } constexpr lint power(lint n) const { lint ans = 1, tmp = this->val; while (n) { if (n & 1) ans = ans * tmp % mod; tmp = tmp * tmp % mod; n /= 2; } return ans; } constexpr lint inv() const { return this->power(mod - 2); } }; using mint = ModInt<998244353>; // Fast Walsh-Hadamard transform // Tutorials: <https://codeforces.com/blog/entry/71899> // <https://csacademy.com/blog/fast-fourier-transform-and-variations-of-it> template <typename T, typename F> void walsh_hadamard(std::vector<T>& seq, F f) { const int n = seq.size(); for (int w = 1; w < n; w *= 2) { for (int i = 0; i < n; i += w * 2) { for (int j = 0; j < w; j++) { f(seq[i + j], seq[i + j + w]); } } } } auto zeta = [](mint& lo, mint& hi) { hi += lo; }; auto moebius = [](mint& lo, mint& hi) { hi -= lo; }; int main() { cin.tie(nullptr), ios::sync_with_stdio(false); int N; cin >> N; vector<mint> trans(1 << N); for (auto &x : trans) { cin >> x; } mint S = accumulate(trans.begin(), trans.end(), mint(0)); for (auto &x : trans) { x = -x / S; } trans[0] += 1; walsh_hadamard(trans, zeta); vector<mint> dp(1 << N); dp[0] = 1; walsh_hadamard(dp, zeta); for (size_t i = 0; i < dp.size(); i++) { dp[i] /= trans[i]; } walsh_hadamard(dp, moebius); cout << accumulate(dp.begin(), dp.end() - 1, mint(0)).val << '\n'; }