結果

問題 No.2430 Damage Zone
ユーザー polylogKpolylogK
提出日時 2023-09-28 17:11:28
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 22 ms / 2,000 ms
コード長 1,523 bytes
コンパイル時間 2,354 ms
コンパイル使用メモリ 208,860 KB
実行使用メモリ 11,740 KB
最終ジャッジ日時 2023-09-28 17:11:45
合計ジャッジ時間 4,043 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 13 ms
7,660 KB
testcase_01 AC 9 ms
6,020 KB
testcase_02 AC 20 ms
11,044 KB
testcase_03 AC 2 ms
4,376 KB
testcase_04 AC 3 ms
4,376 KB
testcase_05 AC 2 ms
4,380 KB
testcase_06 AC 1 ms
4,380 KB
testcase_07 AC 2 ms
4,380 KB
testcase_08 AC 2 ms
4,376 KB
testcase_09 AC 2 ms
4,380 KB
testcase_10 AC 2 ms
4,376 KB
testcase_11 AC 2 ms
4,376 KB
testcase_12 AC 3 ms
4,376 KB
testcase_13 AC 2 ms
4,380 KB
testcase_14 AC 22 ms
11,608 KB
testcase_15 AC 21 ms
11,608 KB
testcase_16 AC 22 ms
11,740 KB
testcase_17 AC 6 ms
4,756 KB
testcase_18 AC 2 ms
4,376 KB
testcase_19 AC 2 ms
4,376 KB
testcase_20 AC 10 ms
6,804 KB
testcase_21 AC 2 ms
4,376 KB
testcase_22 AC 3 ms
4,380 KB
testcase_23 AC 3 ms
4,376 KB
testcase_24 AC 3 ms
4,376 KB
testcase_25 AC 9 ms
5,820 KB
testcase_26 AC 11 ms
6,936 KB
testcase_27 AC 7 ms
5,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std::literals::string_literals;
using i64 = std::int_fast64_t;
using std::cerr;
using std::cin;
using std::cout;
using std::endl;

#if defined(DONLINE_JUDGE)
#define NDEBUG
#elif defined(ONLINE_JUDGE)
#define NDEBUG
#endif

template <typename T>
std::vector<T> make_v(size_t a) {
    return std::vector<T>(a);
}
template <typename T, typename... Ts>
auto make_v(size_t a, Ts... ts) {
    return std::vector<decltype(make_v<T>(ts...))>(a, make_v<T>(ts...));
}

int main() {
    int h, w, k;
    scanf("%d%d%d", &h, &w, &k);
    std::vector<std::string> s(h);
    for (auto& v : s) std::cin >> v;

    const int MOD = 998244353;

    auto dp = make_v<int>(h, w, k + 1);
    for (auto& x : dp)
        for (auto& y : x)
            for (auto& z : y) z = 0;
    dp[0][0][0] = 1;

    for (int y = 0; y < h; ++y) {
        for (int x = 0; x < w; ++x) {
            for (int i = 0; i < k; ++i) {
                if (y + 1 < h and s[y + 1][x] != '#') {
                    const int ni = i + (s[y + 1][x] == 'o');

                    dp[y + 1][x][ni] = (dp[y + 1][x][ni] + dp[y][x][i]) % MOD;
                }
                if (x + 1 < w and s[y][x + 1] != '#') {
                    const int ni = i + (s[y][x + 1] == 'o');

                    dp[y][x + 1][ni] = (dp[y][x + 1][ni] + dp[y][x][i]) % MOD;
                }
            }
        }
    }

    int ans = 0;
    for (int i = 0; i < k; ++i) ans = (ans + dp[h - 1][w - 1][i]) % MOD;
    printf("%d\n", ans);
    return 0;
}
0