結果

問題 No.2430 Damage Zone
ユーザー eve__fuyukieve__fuyuki
提出日時 2024-06-13 01:46:19
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 27 ms / 2,000 ms
コード長 1,306 bytes
コンパイル時間 2,164 ms
コンパイル使用メモリ 212,180 KB
実行使用メモリ 11,520 KB
最終ジャッジ日時 2024-06-13 01:46:26
合計ジャッジ時間 3,193 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
7,808 KB
testcase_01 AC 8 ms
6,816 KB
testcase_02 AC 16 ms
11,008 KB
testcase_03 AC 3 ms
6,940 KB
testcase_04 AC 3 ms
6,940 KB
testcase_05 AC 3 ms
6,944 KB
testcase_06 AC 3 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 3 ms
6,944 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 27 ms
11,392 KB
testcase_15 AC 19 ms
11,392 KB
testcase_16 AC 17 ms
11,520 KB
testcase_17 AC 5 ms
6,940 KB
testcase_18 AC 3 ms
6,940 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 9 ms
6,940 KB
testcase_21 AC 3 ms
6,940 KB
testcase_22 AC 3 ms
6,944 KB
testcase_23 AC 3 ms
6,944 KB
testcase_24 AC 3 ms
6,940 KB
testcase_25 AC 8 ms
6,944 KB
testcase_26 AC 10 ms
6,940 KB
testcase_27 AC 7 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
#include <atcoder/modint>
using namespace atcoder;
using mint = modint998244353;
void fast_io() {
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);
}

int main() {
    fast_io();
    int h, w, k;
    cin >> h >> w >> k;
    vector<string> s(h);
    for (int i = 0; i < h; i++) {
        cin >> s[i];
    }
    vector dp(h, vector(w, vector<mint>(k, 0)));
    dp[0][0][0] = 1;
    for (int i = 0; i < h; i++) {
        for (int j = 0; j < w; j++) {
            for (int l = 0; l < k; l++) {
                if (j < w - 1 && s[i][j + 1] != '#') {
                    if (s[i][j + 1] == '.') {
                        dp[i][j + 1][l] += dp[i][j][l];
                    } else if (l < k - 1) {
                        dp[i][j + 1][l + 1] += dp[i][j][l];
                    }
                }
                if (i < h - 1 && s[i + 1][j] != '#') {
                    if (s[i + 1][j] == '.') {
                        dp[i + 1][j][l] += dp[i][j][l];
                    } else if (l < k - 1) {
                        dp[i + 1][j][l + 1] += dp[i][j][l];
                    }
                }
            }
        }
    }
    mint ans = 0;
    for (int i = 0; i < k; i++) {
        ans += dp[h - 1][w - 1][i];
    }
    cout << ans.val() << endl;
}
0