結果

問題 No.2430 Damage Zone
ユーザー cho435cho435
提出日時 2023-08-21 22:22:27
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 22 ms / 2,000 ms
コード長 903 bytes
コンパイル時間 5,450 ms
コンパイル使用メモリ 270,420 KB
実行使用メモリ 12,032 KB
最終ジャッジ日時 2024-05-09 04:33:15
合計ジャッジ時間 6,268 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 13 ms
7,808 KB
testcase_01 AC 7 ms
5,760 KB
testcase_02 AC 21 ms
11,392 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 3 ms
5,376 KB
testcase_12 AC 3 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 22 ms
12,032 KB
testcase_15 AC 22 ms
12,032 KB
testcase_16 AC 21 ms
12,032 KB
testcase_17 AC 7 ms
5,376 KB
testcase_18 AC 3 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 10 ms
6,784 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 3 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 3 ms
5,376 KB
testcase_25 AC 7 ms
5,760 KB
testcase_26 AC 10 ms
7,040 KB
testcase_27 AC 6 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using ll = long long;
#define rep(i,n) for(int i=0;i<(int)(n);i++)
using mint = atcoder::modint998244353;

int main(){
	int h,w,k;
	cin>>h>>w>>k;
	vector<string> s(h);
	rep(i,h) cin>>s.at(i);
	vector<vector<vector<mint>>> dp(k,vector<vector<mint>>(h,vector<mint>(w,0)));
	dp.at(0).at(0).at(0)=1;
	rep(l,k) rep(i,h) rep(j,w){
		if(dp.at(l).at(i).at(j)==0) continue;
		if(i+1<h){
			if(s.at(i+1).at(j)=='.'){
				dp.at(l).at(i+1).at(j)+=dp.at(l).at(i).at(j);
			}
			if(s.at(i+1).at(j)=='o'&&l+1<k){
				dp.at(l+1).at(i+1).at(j)+=dp.at(l).at(i).at(j);
			}
		}
		if(j+1<w){
			if(s.at(i).at(j+1)=='.'){
				dp.at(l).at(i).at(j+1)+=dp.at(l).at(i).at(j);
			}
			if(s.at(i).at(j+1)=='o'&&l+1<k){
				dp.at(l+1).at(i).at(j+1)+=dp.at(l).at(i).at(j);
			}
		}
	}
	mint ans=0;
	rep(i,k) ans+=dp.at(i).back().back();
	cout<<ans.val()<<endl;
}
0