結果

問題 No.1967 Sugoroku Optimization
ユーザー monnumonnu
提出日時 2022-06-03 22:15:33
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 611 ms / 2,000 ms
コード長 862 bytes
コンパイル時間 4,084 ms
コンパイル使用メモリ 231,256 KB
実行使用メモリ 34,688 KB
最終ジャッジ日時 2024-09-21 02:49:54
合計ジャッジ時間 9,224 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 611 ms
34,560 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 539 ms
31,232 KB
testcase_06 AC 571 ms
33,280 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 410 ms
24,320 KB
testcase_09 AC 295 ms
18,944 KB
testcase_10 AC 144 ms
10,624 KB
testcase_11 AC 20 ms
5,376 KB
testcase_12 AC 365 ms
22,528 KB
testcase_13 AC 180 ms
12,800 KB
testcase_14 AC 12 ms
5,376 KB
testcase_15 AC 12 ms
5,376 KB
testcase_16 AC 18 ms
5,376 KB
testcase_17 AC 21 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 594 ms
34,688 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 611 ms
34,560 KB
testcase_23 AC 363 ms
22,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using namespace atcoder;
using ll=long long;
using Graph=vector<vector<int>>;
#define INF 1000000000000000000
#define MOD 998244353
#define MAX 1000000

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

ll modinv(ll a,ll mod=MOD){
  return modpow(a,mod-2,mod);
}

int main(){
  int N,K;
  cin>>N>>K;

  vector<vector<ll>> dp(K+1,vector<ll>(N+1,0));
  for(int i=0;i<=K;i++){
    dp[i][N]=1;
  }
  for(int i=K-1;i>=0;i--){
    vector<ll> sum=dp[i+1];
    for(int j=1;j<=N;j++){
      sum[j]+=sum[j-1];
      sum[j]%=MOD;
    }
    //dp[i][0]=sum[N]*modinv(N)%MOD;
    for(int j=0;j<N;j++){
      dp[i][j]=((sum[N]+MOD-sum[j])%MOD)*modinv(N-j)%MOD;
    }
  }

  cout<<dp[0][0]<<'\n';
}
0