結果

問題 No.2105 Avoid MeX
ユーザー gazellegazelle
提出日時 2022-10-21 23:08:10
言語 C++17
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 87 ms / 2,000 ms
コード長 5,688 bytes
コンパイル時間 1,565 ms
コンパイル使用メモリ 121,688 KB
実行使用メモリ 26,892 KB
最終ジャッジ日時 2023-09-13 23:15:56
合計ジャッジ時間 3,186 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
26,520 KB
testcase_01 AC 10 ms
26,456 KB
testcase_02 AC 11 ms
26,488 KB
testcase_03 AC 10 ms
26,556 KB
testcase_04 AC 49 ms
26,840 KB
testcase_05 AC 9 ms
26,840 KB
testcase_06 AC 26 ms
26,744 KB
testcase_07 AC 39 ms
26,792 KB
testcase_08 AC 17 ms
26,740 KB
testcase_09 AC 55 ms
26,844 KB
testcase_10 AC 10 ms
26,556 KB
testcase_11 AC 10 ms
26,484 KB
testcase_12 AC 16 ms
26,892 KB
testcase_13 AC 10 ms
26,792 KB
testcase_14 AC 32 ms
26,764 KB
testcase_15 AC 38 ms
26,380 KB
testcase_16 AC 10 ms
26,744 KB
testcase_17 AC 11 ms
26,788 KB
testcase_18 AC 11 ms
26,824 KB
testcase_19 AC 87 ms
26,844 KB
testcase_20 AC 86 ms
26,736 KB
testcase_21 AC 87 ms
26,860 KB
testcase_22 AC 86 ms
26,880 KB
testcase_23 AC 9 ms
26,484 KB
testcase_24 AC 8 ms
26,388 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <bitset>
#include <cassert>
#include <iomanip>
#include <iostream>
#include <map>
#include <queue>
#include <random>
#include <set>
#include <stack>
#include <vector>
#define FOR(i, n, m) for (ll i = n; i < (int)m; i++)
#define REP(i, n) FOR(i, 0, n)
#define ALL(v) v.begin(), v.end()
#define pb push_back
using namespace std;
using ll = long long;
using P = pair<ll, ll>;
constexpr ll inf = 1000000000;
constexpr ll mod = 998244353;
constexpr long double eps = 1e-9;

template <typename T1, typename T2>
ostream& operator<<(ostream& os, pair<T1, T2> p) {
    os << to_string(p.first) << " " << to_string(p.second);
    return os;
}
template <typename T>
ostream& operator<<(ostream& os, vector<T>& v) {
    REP(i, v.size()) {
        if (i) os << " ";
        os << to_string(v[i]);
    }
    return os;
}

struct modint {
    ll n;

   public:
    modint(const ll n = 0) : n((n % mod + mod) % mod) {}
    static modint pow(modint a, int m) {
        modint r = 1;
        while (m > 0) {
            if (m & 1) {
                r *= a;
            }
            a = (a * a);
            m /= 2;
        }
        return r;
    }
    modint& operator++() {
        *this += 1;
        return *this;
    }
    modint& operator--() {
        *this -= 1;
        return *this;
    }
    modint operator++(int) {
        modint ret = *this;
        *this += 1;
        return ret;
    }
    modint operator--(int) {
        modint ret = *this;
        *this -= 1;
        return ret;
    }
    modint operator~() const { return (this->pow(n, mod - 2)); }  // inverse
    friend bool operator==(const modint& lhs, const modint& rhs) {
        return lhs.n == rhs.n;
    }
    friend bool operator<(const modint& lhs, const modint& rhs) {
        return lhs.n < rhs.n;
    }
    friend bool operator>(const modint& lhs, const modint& rhs) {
        return lhs.n > rhs.n;
    }
    friend modint& operator+=(modint& lhs, const modint& rhs) {
        lhs.n += rhs.n;
        if (lhs.n >= mod) lhs.n -= mod;
        return lhs;
    }
    friend modint& operator-=(modint& lhs, const modint& rhs) {
        lhs.n -= rhs.n;
        if (lhs.n < 0) lhs.n += mod;
        return lhs;
    }
    friend modint& operator*=(modint& lhs, const modint& rhs) {
        lhs.n = (lhs.n * rhs.n) % mod;
        return lhs;
    }
    friend modint& operator/=(modint& lhs, const modint& rhs) {
        lhs.n = (lhs.n * (~rhs).n) % mod;
        return lhs;
    }
    friend modint operator+(const modint& lhs, const modint& rhs) {
        return modint(lhs.n + rhs.n);
    }
    friend modint operator-(const modint& lhs, const modint& rhs) {
        return modint(lhs.n - rhs.n);
    }
    friend modint operator*(const modint& lhs, const modint& rhs) {
        return modint(lhs.n * rhs.n);
    }
    friend modint operator/(const modint& lhs, const modint& rhs) {
        return modint(lhs.n * (~rhs).n);
    }
};
istream& operator>>(istream& is, modint m) {
    is >> m.n;
    return is;
}
ostream& operator<<(ostream& os, modint m) {
    os << m.n;
    return os;
}

#define MAX_N 3030303
long long extgcd(long long a, long long b, long long& x, long long& y) {
    long long d = a;
    if (b != 0) {
        d = extgcd(b, a % b, y, x);
        y -= (a / b) * x;
    } else {
        x = 1;
        y = 0;
    }
    return d;
}
long long mod_inverse(long long a, long long m) {
    long long x, y;
    if (extgcd(a, m, x, y) == 1)
        return (m + x % m) % m;
    else
        return -1;
}
vector<long long> fact(MAX_N + 1, inf);
long long mod_fact(long long n, long long& e) {
    if (fact[0] == inf) {
        fact[0] = 1;
        if (MAX_N != 0) fact[1] = 1;
        for (ll i = 2; i <= MAX_N; ++i) {
            fact[i] = (fact[i - 1] * i) % mod;
        }
    }
    e = 0;
    if (n == 0) return 1;
    long long res = mod_fact(n / mod, e);
    e += n / mod;
    if ((n / mod) % 2 != 0) return (res * (mod - fact[n % mod])) % mod;
    return (res * fact[n % mod]) % mod;
}
// return nCk
long long mod_comb(long long n, long long k) {
    if (n < 0 || k < 0 || n < k) return 0;
    long long e1, e2, e3;
    long long a1 = mod_fact(n, e1), a2 = mod_fact(k, e2),
              a3 = mod_fact(n - k, e3);
    if (e1 > e2 + e3) return 0;
    return (a1 * mod_inverse((a2 * a3) % mod, mod)) % mod;
}

using mi = modint;

mi linear_sum(mi a, mi b) {
    mi ret = b * (b + 1) / 2;
    if (a.n != 0) ret -= (a - 1) * a / 2;
    return ret;
}

mi quad_sum(mi a, mi b) {
    mi ret = b * (b + 1) * (2 * b + 1) / 6;
    if (a.n != 0) ret -= (a - 1) * a * (2 * a - 1) / 6;
    return ret;
}

mi mod_pow(mi a, ll n) {
    mi ret = 1;
    mi tmp = a;
    while (n > 0) {
        if (n % 2) ret *= tmp;
        tmp = tmp * tmp;
        n /= 2;
    }
    return ret;
}

ll gcd(ll a, ll b) {
    if (b == 0) return a;
    return gcd(b, a % b);
}

int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);

    int c, x;
    cin >> c >> x;

    if(x == 0) {
        mi ans = 1;
        ans /= (c + 1);
        cout << ans << endl;
        return 0;
    }

    vector<mi> num_prob(x + 1, 0);
    num_prob[0] = 1;

    vector<mi> revrev(5000);
    REP(i, 5000) {
        revrev[i] = mod_pow(i, mod - 2);
    }

    while(c < x) {
        vector<mi> new_num_prob(x + 1, 0);
        for(int i = 1; i < x + 1; i++) {
            new_num_prob[i] += num_prob[i] * i * revrev[c + 1];
            new_num_prob[i] += num_prob[i - 1] * (c + 1 - (i - 1)) * revrev[c + 1];
        }
        num_prob = new_num_prob;
        c += 1;
    }
    mi ans = 0;
    REP(i, x + 1) {
        int num_rem = (x + 1) - i;
        ans += num_prob[i] * (num_rem - 1) / num_rem;
    }

    cout << ans << endl;
}
0