結果

問題 No.2430 Damage Zone
ユーザー t98slidert98slider
提出日時 2023-08-18 21:50:07
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 14 ms / 2,000 ms
コード長 3,087 bytes
コンパイル時間 1,489 ms
コンパイル使用メモリ 171,360 KB
実行使用メモリ 11,520 KB
最終ジャッジ日時 2024-05-06 03:48:54
合計ジャッジ時間 2,463 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
11,520 KB
testcase_01 AC 8 ms
11,392 KB
testcase_02 AC 14 ms
11,496 KB
testcase_03 AC 5 ms
11,392 KB
testcase_04 AC 4 ms
11,392 KB
testcase_05 AC 5 ms
11,392 KB
testcase_06 AC 6 ms
11,464 KB
testcase_07 AC 5 ms
11,392 KB
testcase_08 AC 4 ms
11,392 KB
testcase_09 AC 5 ms
11,388 KB
testcase_10 AC 4 ms
11,392 KB
testcase_11 AC 4 ms
11,328 KB
testcase_12 AC 5 ms
11,512 KB
testcase_13 AC 5 ms
11,520 KB
testcase_14 AC 13 ms
11,520 KB
testcase_15 AC 14 ms
11,344 KB
testcase_16 AC 14 ms
11,392 KB
testcase_17 AC 6 ms
11,384 KB
testcase_18 AC 4 ms
11,392 KB
testcase_19 AC 4 ms
11,392 KB
testcase_20 AC 8 ms
11,392 KB
testcase_21 AC 4 ms
11,392 KB
testcase_22 AC 4 ms
11,520 KB
testcase_23 AC 4 ms
11,388 KB
testcase_24 AC 5 ms
11,392 KB
testcase_25 AC 7 ms
11,392 KB
testcase_26 AC 9 ms
11,392 KB
testcase_27 AC 6 ms
11,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

template<const unsigned int MOD> struct prime_modint {
    using mint = prime_modint;
    unsigned int v;
    prime_modint() : v(0) {}
    prime_modint(unsigned int a) { a %= MOD; v = a; }
    prime_modint(unsigned long long a) { a %= MOD; v = a; }
    prime_modint(int a) { a %= (int)(MOD); if(a < 0)a += MOD; v = a; }
    prime_modint(long long a) { a %= (int)(MOD); if(a < 0)a += MOD; v = a; }
    static constexpr int mod() { return MOD; }
    mint& operator++() {v++; if(v == MOD)v = 0; return *this;}
    mint& operator--() {if(v == 0)v = MOD; v--; return *this;}
    mint operator++(int) { mint result = *this; ++*this; return result; }
    mint operator--(int) { mint result = *this; --*this; return result; }
    mint& operator+=(const mint& rhs) { v += rhs.v; if(v >= MOD) v -= MOD; return *this; }
    mint& operator-=(const mint& rhs) { if(v < rhs.v) v += MOD; v -= rhs.v; return *this; }
    mint& operator*=(const mint& rhs) {
        v = (unsigned int)((unsigned long long)(v) * rhs.v % MOD);
        return *this;
    }
    mint& operator/=(const mint& rhs) { return *this = *this * rhs.inv(); }
    mint operator+() const { return *this; }
    mint operator-() const { return mint() - *this; }
    mint pow(long long n) const {
        assert(0 <= n);
        mint r = 1, x = *this;
        while (n) {
            if (n & 1) r *= x;
            x *= x;
            n >>= 1;
        }
        return r;
    }
    mint inv() const { assert(v); return pow(MOD - 2); }
    friend mint operator+(const mint& lhs, const mint& rhs) { return mint(lhs) += rhs; }
    friend mint operator-(const mint& lhs, const mint& rhs) { return mint(lhs) -= rhs; }
    friend mint operator*(const mint& lhs, const mint& rhs) { return mint(lhs) *= rhs; }
    friend mint operator/(const mint& lhs, const mint& rhs) { return mint(lhs) /= rhs; }
    friend bool operator==(const mint& lhs, const mint& rhs) { return (lhs.v == rhs.v); }
    friend bool operator!=(const mint& lhs, const mint& rhs) { return (lhs.v != rhs.v); }
    friend std::ostream& operator << (std::ostream &os, const mint& rhs) noexcept { return os << rhs.v; }
};
//using mint = prime_modint<1000000007>;
using mint = prime_modint<998244353>;

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int h, w, k;
    cin >> h >> w >> k;
    vector<string> A(h);
    for(auto &&s : A) cin >> s;
    static mint dp[100][100][205];
    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 && A[y + 1][x] != '#'){
                    int ni = i + (A[y + 1][x] == 'o');
                    if(ni < k) dp[y + 1][x][ni] += dp[y][x][i];
                }
                if(x + 1 < w && A[y][x + 1] != '#'){
                    int ni = i + (A[y][x + 1] == 'o');
                    if(ni < k) dp[y][x + 1][ni] += dp[y][x][i];
                }
            }
        }
    }
    mint ans;
    for(int i = 0; i < k; i++) ans += dp[h - 1][w - 1][i];
    cout << ans << '\n';
}
0