結果

問題 No.2003 Frog on Grid
ユーザー to-omerto-omer
提出日時 2022-01-31 18:28:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 187 ms / 2,000 ms
コード長 1,300 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 111,504 KB
最終ジャッジ日時 2024-06-28 08:09:59
合計ジャッジ時間 3,802 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,648 KB
testcase_01 AC 38 ms
53,612 KB
testcase_02 AC 37 ms
52,492 KB
testcase_03 AC 37 ms
52,244 KB
testcase_04 AC 38 ms
52,700 KB
testcase_05 AC 39 ms
52,072 KB
testcase_06 AC 38 ms
52,440 KB
testcase_07 AC 38 ms
52,868 KB
testcase_08 AC 41 ms
52,748 KB
testcase_09 AC 54 ms
63,952 KB
testcase_10 AC 50 ms
62,004 KB
testcase_11 AC 53 ms
62,724 KB
testcase_12 AC 59 ms
64,924 KB
testcase_13 AC 53 ms
62,620 KB
testcase_14 AC 53 ms
63,392 KB
testcase_15 AC 56 ms
63,516 KB
testcase_16 AC 48 ms
60,352 KB
testcase_17 AC 127 ms
85,976 KB
testcase_18 AC 187 ms
104,264 KB
testcase_19 AC 109 ms
111,504 KB
testcase_20 AC 137 ms
108,800 KB
testcase_21 AC 83 ms
96,604 KB
testcase_22 AC 103 ms
109,088 KB
testcase_23 AC 134 ms
104,832 KB
testcase_24 AC 149 ms
104,288 KB
testcase_25 AC 115 ms
103,964 KB
testcase_26 AC 102 ms
101,260 KB
testcase_27 AC 154 ms
104,172 KB
testcase_28 AC 111 ms
103,780 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353


def main():
    H, W, K, C = open(0).read().split(maxsplit=3)
    H, W, K = int(H), int(W), int(K)
    dp = [0] * (H * W)
    stair = [0] * (H * W)
    dacc = [0] * (H * W)
    for i in range(H):
        hacc = [0] * W
        for j in range(W):
            x = 0
            if i == 0 and j == 0:
                dp[0] += 1
            else:
                if i > 0:
                    x += stair[(i - 1) * W + j]
                if j > 0:
                    x += hacc[j - 1]
                if j >= K + 1:
                    x -= hacc[j - K - 1]
                p = max(0, K - j)
                if i >= p + 1:
                    x -= dacc[(i - p - 1) * W + j + p - K]
                if i >= K + 2 and j + 1 < W:
                    x += dacc[(i - K - 2) * W + j + 1]
                x %= MOD
                if C[i * (W + 1) + j] == ".":
                    dp[i * W + j] = x

            stair[i * W + j] = (x + dp[i * W + j]) % MOD
            dacc[i * W + j] = dp[i * W + j]
            if i > 0 and j + 1 < W:
                dacc[i * W + j] = (dacc[i * W + j] + dacc[(i - 1) * W + j + 1]) % MOD
            hacc[j] = dp[i * W + j]
            if j > 0:
                hacc[j] = (hacc[j] + hacc[j - 1]) % MOD

    print(dp[-1])


if __name__ == "__main__":
    main()
0