結果
問題 | No.2130 分配方法の数え上げ mod 998244353 |
ユーザー | みここ |
提出日時 | 2022-12-11 02:42:35 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,642 bytes |
コンパイル時間 | 696 ms |
コンパイル使用メモリ | 75,636 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-15 02:22:20 |
合計ジャッジ時間 | 2,025 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | AC | 2 ms
5,248 KB |
testcase_12 | AC | 2 ms
5,248 KB |
testcase_13 | AC | 2 ms
5,248 KB |
testcase_14 | AC | 2 ms
5,248 KB |
testcase_15 | AC | 2 ms
5,248 KB |
testcase_16 | AC | 2 ms
5,248 KB |
testcase_17 | AC | 2 ms
5,248 KB |
testcase_18 | AC | 2 ms
5,248 KB |
testcase_19 | AC | 2 ms
5,248 KB |
testcase_20 | AC | 2 ms
5,248 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | AC | 2 ms
5,248 KB |
testcase_29 | WA | - |
testcase_30 | AC | 2 ms
5,248 KB |
testcase_31 | AC | 2 ms
5,248 KB |
testcase_32 | AC | 2 ms
5,248 KB |
testcase_33 | AC | 2 ms
5,248 KB |
testcase_34 | AC | 2 ms
5,248 KB |
testcase_35 | WA | - |
testcase_36 | AC | 2 ms
5,248 KB |
testcase_37 | WA | - |
ソースコード
#include <iostream> #include <cassert> #include <vector> using namespace std; typedef long long ll; const int MOD = 998244353; struct mint { int val; mint() : val(0) {} mint(long long v) : val(v) { if (abs(val) >= MOD) { val %= MOD; } if (val < 0) { val += MOD; } } mint &operator++() { val++; if (val == MOD) { val = 0; } return *this; } mint &operator--() { if (val == 0) { val = MOD; } val--; return *this; } mint &operator+=(const mint &x) { val += x.val; if (val >= MOD) { val -= MOD; } return *this; } mint &operator-=(const mint &x) { val -= x.val; if (val < 0) { val += MOD; } return *this; } mint &operator*=(const mint &x) { val = (int)((long long)val * x.val % MOD); return *this; } mint &operator/=(const mint &x) { *this *= x.inv(); return *this; } mint operator-() { return mint() - *this; } mint pow(long long n) const { mint x = 1, r = *this; while (n) { if (n & 1) { x *= r; } r *= r; n >>= 1; } return x; } mint inv() const { return pow(MOD - 2); } friend mint operator+(const mint &x, const mint &y) { return mint(x) += y; } friend mint operator-(const mint &x, const mint &y) { return mint(x) -= y; } friend mint operator*(const mint &x, const mint &y) { return mint(x) *= y; } friend mint operator/(const mint &x, const mint &y) { return mint(x) /= y; } friend bool operator==(const mint &x, const mint &y) { return x.val == y.val; } friend bool operator!=(const mint &x, const mint &y) { return x.val != y.val; } friend std::ostream &operator<<(std::ostream &os, const mint &x) { return os << x.val; } friend std::istream &operator>>(std::istream &is, mint &x) { int v; is >> v; x = mint(v); return is; } }; mint modpow(mint x, long long n) { mint res = 1, r = x; while (n) { if (n & 1) { res *= r; } r *= r; n >>= 1; } return res; } struct combination_fix_n { long long n; int maxk; std::vector<mint> nP; std::vector<mint> fact; std::vector<mint> ifact; combination_fix_n(long long n, int maxk) : n(n), maxk(maxk) { nP.resize(maxk + 1); fact.resize(maxk + 1); ifact.resize(maxk + 1); nP[0] = 1; fact[0] = 1; for (int i = 1; i <= maxk; i++) { nP[i] = nP[i - 1] * (n + 1 - i); fact[i] = fact[i - 1] * i; } ifact[maxk] = modpow(fact[maxk], MOD - 2); for (int i = maxk - 1; i >= 0; i--) { ifact[i] = ifact[i + 1] * (i + 1); } } mint operator()(int k) { if (k > n || k < 0) { return 0; } assert(k <= maxk); return nP[k] * ifact[k]; } }; int main() { ll n, m; cin >> n >> m; combination_fix_n com_n(n, m); mint ans = modpow(2, n); for (int i = 0; i < m; i++) { ans -= com_n(i); } cout << ans << endl; }