結果

問題 No.1967 Sugoroku Optimization
ユーザー ぷらぷら
提出日時 2022-06-03 21:43:01
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 20 ms / 2,000 ms
コード長 753 bytes
コンパイル時間 2,151 ms
コンパイル使用メモリ 201,960 KB
実行使用メモリ 19,088 KB
最終ジャッジ日時 2024-09-21 02:33:20
合計ジャッジ時間 3,273 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 20 ms
19,072 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 18 ms
17,340 KB
testcase_06 AC 19 ms
18,560 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 14 ms
14,848 KB
testcase_09 AC 11 ms
11,264 KB
testcase_10 AC 7 ms
9,856 KB
testcase_11 AC 3 ms
5,248 KB
testcase_12 AC 12 ms
13,056 KB
testcase_13 AC 7 ms
8,448 KB
testcase_14 AC 3 ms
5,376 KB
testcase_15 AC 3 ms
5,376 KB
testcase_16 AC 3 ms
5,376 KB
testcase_17 AC 3 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 16 ms
19,072 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 17 ms
19,088 KB
testcase_23 AC 12 ms
13,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

constexpr int mod = 998244353;

long long modpow(long long a,long long b) {
    long long ans = 1;
    while(b) {
        if(b & 1) {
            (ans *= a) %= mod;
        }
        (a *= a) %= mod;
        b /= 2;
    }
    return ans;
}

int dp[2002][2002];

int main() {
    int N,K;
    cin >> N >> K;
    vector<int>tmp(N+1);
    for(int i = 1; i <= N; i++) {
        tmp[i] = modpow(i,mod-2);
    }
    dp[K][N] = 1;
    for(int i = K-1; i >= 0; i--) {
        dp[i][N] = 1;
        int sum = 1;
        for(int j = N-1; j >= 0; j--) {
            dp[i][j] = 1ll*sum*tmp[N-j]%mod;
            sum += dp[i+1][j];
            if(sum >= mod) sum -= mod;
        }
    }
    cout << dp[0][0] << endl;
}
0