結果

問題 No.1191 数え上げを愛したい(数列編)
ユーザー snow39snow39
提出日時 2020-08-22 14:10:15
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 69 ms / 2,000 ms
コード長 1,664 bytes
コンパイル時間 814 ms
コンパイル使用メモリ 94,256 KB
実行使用メモリ 27,092 KB
最終ジャッジ日時 2024-04-23 08:33:05
合計ジャッジ時間 3,375 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
26,888 KB
testcase_01 AC 63 ms
27,028 KB
testcase_02 AC 57 ms
26,968 KB
testcase_03 AC 66 ms
27,016 KB
testcase_04 AC 62 ms
26,996 KB
testcase_05 AC 56 ms
26,796 KB
testcase_06 AC 69 ms
26,980 KB
testcase_07 AC 65 ms
26,816 KB
testcase_08 AC 58 ms
27,092 KB
testcase_09 AC 55 ms
26,780 KB
testcase_10 AC 54 ms
27,040 KB
testcase_11 AC 57 ms
26,884 KB
testcase_12 AC 63 ms
26,928 KB
testcase_13 AC 48 ms
26,860 KB
testcase_14 AC 56 ms
27,000 KB
testcase_15 AC 66 ms
26,984 KB
testcase_16 AC 58 ms
26,872 KB
testcase_17 AC 57 ms
27,036 KB
testcase_18 AC 52 ms
26,916 KB
testcase_19 AC 67 ms
26,932 KB
testcase_20 AC 60 ms
26,884 KB
testcase_21 AC 49 ms
26,920 KB
testcase_22 AC 47 ms
27,052 KB
testcase_23 AC 60 ms
26,936 KB
testcase_24 AC 48 ms
26,892 KB
testcase_25 AC 54 ms
26,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <string>
#include <vector>
#include <cmath>
#include <map>
#include <queue>
#include <iomanip>
#include <set>
#include <tuple>
#define mkp make_pair
#define mkt make_tuple
#define rep(i,n) for(int i = 0; i < (n); ++i)
#define all(v) v.begin(),v.end()
using namespace std;
typedef long long ll;
const ll MOD=998244353;
template<class T> void chmin(T &a,const T &b){if(a>b) a=b;}
template<class T> void chmax(T &a,const T &b){if(a<b) a=b;}

#define MAX_N 1000010
ll inv[MAX_N+10],fac[MAX_N+10],ifac[MAX_N+10];

void setComb(){
  inv[0]=1;inv[1]=1;fac[1]=1;ifac[1]=1;fac[0]=1;ifac[0]=1;
  for(int i=2;i<MAX_N;i++){
    inv[i]=(-MOD/i)*inv[MOD%i]%MOD;
    fac[i]=fac[i-1]*i%MOD;
    ifac[i]=ifac[i-1]*inv[i]%MOD;

    inv[i]=(inv[i]+MOD)%MOD;
    fac[i]=(fac[i]+MOD)%MOD;
    ifac[i]=(ifac[i]+MOD)%MOD;
  }
  return;
}

ll comb(ll n,ll k){
  if(n<k||n<0||k<0) return 0;
  else return ((fac[n]*ifac[k]%MOD*ifac[n-k]%MOD+MOD)%MOD);
}

ll hcomb(ll n,ll r){// this size is really ok??
  if(n==0&&r==0) return 1;
  else if(n<0||r<0) return 0;
  else return comb(n+r-1,r);
}

ll mod_pow(ll x,ll n){
  x%=MOD;
  ll res=1;
  while(n>0){
    if(n&1) res=res*x%MOD;
    x=x*x%MOD;
    n>>=1;
  }
  return res;
}

void add(ll &a,ll b){
  a=(a+b)%MOD;
}

void mul(ll &a,ll b){
  a%=MOD;b%=MOD;
  a=a*b%MOD;
}

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

  ll N,M,A,B;
  cin>>N>>M>>A>>B;

  setComb();

  ll ans=0;
  for(ll i=1;i<=M;i++){
    if((N-1)*A>B) break;
    if(i+(N-1)*A>M) break;

    ll rest=min(M-i-A*(N-1),B-A*(N-1));
    add(ans,hcomb(N,rest));
  }
  mul(ans,fac[N]);
  cout<<ans<<endl;

  return 0;
}
0