結果

問題 No.2105 Avoid MeX
ユーザー pockynypockyny
提出日時 2022-10-21 23:09:47
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,443 bytes
コンパイル時間 597 ms
コンパイル使用メモリ 70,628 KB
実行使用メモリ 44,456 KB
最終ジャッジ日時 2024-07-01 07:27:59
合計ジャッジ時間 1,917 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
13,512 KB
testcase_01 AC 12 ms
13,764 KB
testcase_02 AC 12 ms
14,408 KB
testcase_03 AC 12 ms
13,640 KB
testcase_04 AC 27 ms
34,084 KB
testcase_05 AC 13 ms
14,028 KB
testcase_06 AC 20 ms
25,984 KB
testcase_07 AC 23 ms
28,068 KB
testcase_08 AC 16 ms
16,640 KB
testcase_09 AC 29 ms
32,512 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 16 ms
17,280 KB
testcase_13 WA -
testcase_14 AC 21 ms
22,784 KB
testcase_15 AC 23 ms
26,624 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 13 ms
12,928 KB
testcase_19 AC 38 ms
44,416 KB
testcase_20 AC 39 ms
44,452 KB
testcase_21 AC 38 ms
44,416 KB
testcase_22 AC 37 ms
44,456 KB
testcase_23 AC 12 ms
12,800 KB
testcase_24 AC 13 ms
12,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>

using namespace std;
using ll = long long;
const int MX = 400010;
ll f[MX],inv[MX],fi[MX];
constexpr ll mod = 998244353;
void solve(){
    inv[1] = 1;
    for(int i=2;i<MX;i++){
        inv[i] = mod - (mod/i)*inv[mod%i]%mod;
    }
    f[0] = fi[0] = 1;
    for(int i=1;i<MX;i++){
        f[i] = f[i-1]*i%mod;
        fi[i] = fi[i-1]*inv[i]%mod;
    }
}

ll nck(ll n, ll k){
    if(n<0 || k<0 || n<k) return 0;
    return f[n]*fi[k]%mod*fi[n-k]%mod;
}

ll pw(ll a,ll x){
    ll ret = 1;
    while(x){
        if(x&1) (ret *= a) %= mod;
        (a *= a) %= mod; x /= 2;
    }
    return ret;
}

ll dp[2010][2010] = {};
int main(){
    int i,j,c,x; cin >> c >> x;
    solve();
    if(x==0){
        cout << inv[c + 1] << endl;
    }
    else if(c>=x){
        cout << inv[x + 1] << endl;
        return 0;
    }else{
        dp[0][0] = 1;
        int las = 0;
        for(i=1;i<=2000;i++){
            if(c + i>x) break;
            for(j=0;j<=x;j++){
                dp[i][j] = inv[c + i]*j%mod*dp[i - 1][j]%mod;
                if(j && (c + i  + 1 - j)>=0) dp[i][j] += inv[c + i]*(c + i + 1 - j)%mod*dp[i - 1][j - 1]%mod;
            }
            las = i;
        }
        ll ans = 0;
        // for(j=0;j<=x;j++){
        //     cout << inv[x - j + 1] << " " << dp[las][j] << endl;
        // }
        for(j=0;j<=x;j++) (ans += inv[x - j + 1]*dp[las][j]%mod) %= mod;
        cout << (mod + 1 - ans)%mod << "\n";
    }
}
0