結果

問題 No.2199 lower_bound and upper_bound
ユーザー 👑 AngrySadEightAngrySadEight
提出日時 2022-10-26 00:39:39
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 217 ms / 2,000 ms
コード長 1,380 bytes
コンパイル時間 721 ms
コンパイル使用メモリ 75,136 KB
実行使用メモリ 8,064 KB
最終ジャッジ日時 2024-07-03 20:07:56
合計ジャッジ時間 7,138 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 215 ms
7,840 KB
testcase_01 AC 209 ms
7,920 KB
testcase_02 AC 217 ms
7,936 KB
testcase_03 AC 208 ms
7,928 KB
testcase_04 AC 209 ms
8,064 KB
testcase_05 AC 212 ms
7,808 KB
testcase_06 AC 207 ms
8,064 KB
testcase_07 AC 211 ms
7,936 KB
testcase_08 AC 209 ms
8,064 KB
testcase_09 AC 209 ms
7,936 KB
testcase_10 AC 214 ms
7,936 KB
testcase_11 AC 212 ms
8,064 KB
testcase_12 AC 211 ms
7,936 KB
testcase_13 AC 209 ms
7,912 KB
testcase_14 AC 217 ms
7,936 KB
testcase_15 AC 212 ms
7,936 KB
testcase_16 AC 206 ms
7,936 KB
testcase_17 AC 207 ms
7,936 KB
testcase_18 AC 210 ms
8,064 KB
testcase_19 AC 212 ms
7,936 KB
testcase_20 AC 213 ms
7,936 KB
testcase_21 AC 213 ms
7,936 KB
testcase_22 AC 210 ms
7,936 KB
testcase_23 AC 207 ms
7,924 KB
testcase_24 AC 207 ms
7,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
using namespace std;
typedef long long ll;

ll my_pow(ll x, ll n, ll mod){
    ll ret;
    if (n == 0){
        ret = 1;
    }
    else if (n % 2 == 0){
        ret = my_pow((x * x) % mod, n / 2, mod);
    }
    else{
        ret = (x * (my_pow((x * x) % mod, n / 2, mod))) % mod;
    }
    return ret;
}

ll inv(ll x, ll mod){
    return my_pow(x, mod - 2, mod);
}

ll comb(ll n, ll r, vector<ll> &fact, vector<ll> &fact_inv, ll mod){
    //nCr
    ll ret;
    ret = (fact[n] * fact_inv[n - r]) % mod;
    ret = (ret * fact_inv[r]) % mod;
    return ret;
}

int main(){
    ll N,L,U;
    cin >> N >> L >> U;
    
    ll mod = 998244353;

    vector<ll> fact(300003);
    fact[0] = 1;
    for (ll i = 0; i < 300002; i++){
        fact[i + 1] = (fact[i] * (i + 1)) % mod;
    }
    vector<ll> fact_inv(300003);
    for (ll i = 0; i < 300003; i++){
        fact_inv[i] = inv(fact[i], mod);
    }

    ll ans = 0;
    for (ll i = L + N; i <= U + N; i++){
        ll x1 = N - 1;
        ll y1 = i;
        ll comb1 = comb(x1 + y1, y1, fact, fact_inv, mod);
        ans = (ans + comb1) % mod;
        
        ll x2 = x1 + U + 2;
        ll y2 = y1 - U - 2;

        if (y2 >= 0){
            ll comb2 = comb(x2 + y2, y2, fact, fact_inv, mod);
            ans = (ans + mod - comb2) % mod; 
        }
    }
    cout << ans << endl;

    return 0;
}
0