結果
問題 | No.2105 Avoid MeX |
ユーザー | milanis48663220 |
提出日時 | 2022-10-21 23:14:23 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 311 ms / 2,000 ms |
コード長 | 2,183 bytes |
コンパイル時間 | 1,225 ms |
コンパイル使用メモリ | 120,092 KB |
実行使用メモリ | 38,688 KB |
最終ジャッジ日時 | 2024-07-01 07:31:44 |
合計ジャッジ時間 | 3,985 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 6 |
other | AC * 19 |
ソースコード
#include <iostream> #include <algorithm> #include <iomanip> #include <vector> #include <queue> #include <deque> #include <set> #include <map> #include <tuple> #include <cmath> #include <numeric> #include <functional> #include <cassert> #include <atcoder/modint> #define debug_value(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << #x << "=" << x << endl; #define debug(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << x << endl; template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } using namespace std; typedef long long ll; template<typename T> vector<vector<T>> vec2d(int n, int m, T v){ return vector<vector<T>>(n, vector<T>(m, v)); } template<typename T> vector<vector<vector<T>>> vec3d(int n, int m, int k, T v){ return vector<vector<vector<T>>>(n, vector<vector<T>>(m, vector<T>(k, v))); } template<typename T> void print_vector(vector<T> v, char delimiter=' '){ if(v.empty()) { cout << endl; return; } for(int i = 0; i+1 < v.size(); i++) cout << v[i] << delimiter; cout << v.back() << endl; } using mint = atcoder::modint998244353; ostream& operator<<(ostream& os, const mint& m){ os << m.val(); return os; } mint dp[3000][3000]; int main(){ ios::sync_with_stdio(false); cin.tie(0); cout << setprecision(10) << fixed; int c, x; cin >> c >> x; if(x == 0){ cout << mint(1)/(c+1) << endl; return 0; } dp[0][0] = 1; int mx = 0; for(int i = 1; c+i-1 < x; i++){ chmax(mx, i); for(int k = 0; k < i; k++){ if(dp[i-1][k].val() == 0) continue; int candidate = c+i-k; mint p = mint(candidate)/mint(c+i); // cout << i << ' ' << k << ' ' << p << endl; dp[i][k+1] += dp[i-1][k]*p; dp[i][k] += dp[i-1][k]*(1-p); } } mint ans = 0; for(int used = 0; used <= x; used++){ int k = x+1-used; ans += dp[mx][used]*(k-1)/k; // cout << k << ' ' << dp[mx][used] << endl; } cout << ans << endl; }