結果

問題 No.2430 Damage Zone
ユーザー umezoumezo
提出日時 2023-08-24 07:07:07
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 23 ms / 2,000 ms
コード長 895 bytes
コンパイル時間 2,246 ms
コンパイル使用メモリ 203,128 KB
実行使用メモリ 20,608 KB
最終ジャッジ日時 2024-12-22 19:39:11
合計ジャッジ時間 3,620 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 20 ms
18,048 KB
testcase_01 AC 10 ms
9,472 KB
testcase_02 AC 22 ms
18,560 KB
testcase_03 AC 3 ms
5,248 KB
testcase_04 AC 4 ms
5,248 KB
testcase_05 AC 6 ms
7,168 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 1 ms
5,248 KB
testcase_08 AC 1 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 4 ms
5,248 KB
testcase_12 AC 4 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 22 ms
18,432 KB
testcase_15 AC 23 ms
18,816 KB
testcase_16 AC 22 ms
19,072 KB
testcase_17 AC 12 ms
11,904 KB
testcase_18 AC 6 ms
6,912 KB
testcase_19 AC 2 ms
5,248 KB
testcase_20 AC 14 ms
12,544 KB
testcase_21 AC 4 ms
5,632 KB
testcase_22 AC 10 ms
11,264 KB
testcase_23 AC 12 ms
11,776 KB
testcase_24 AC 10 ms
9,472 KB
testcase_25 AC 21 ms
20,480 KB
testcase_26 AC 22 ms
20,480 KB
testcase_27 AC 22 ms
20,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define ALL(v) v.begin(),v.end()
typedef long long ll;
 
#include<bits/stdc++.h>
using namespace std;

const int MOD=998244353;
ll dp[110][110][220];

int main(){
  ios::sync_with_stdio(false);
  std::cin.tie(nullptr);
  
  int h,w,k;
  cin>>h>>w>>k;
  vector<string> S(h);
  rep(i,h) cin>>S[i];
  
  dp[0][0][0]=1;
  rep(i,h) rep(j,w) rep(l,k){
  	if(dp[i][j][l]==0) continue;
  	
  	if(i<h-1 && S[i+1][j]=='#') ;
    else if(i<h-1 && S[i+1][j]=='.') dp[i+1][j][l]=(dp[i+1][j][l]+dp[i][j][l])%MOD;
  	else if(i<h-1)  dp[i+1][j][l+1]=(dp[i+1][j][l+1]+dp[i][j][l])%MOD;
  	
  	if(j<w-1 && S[i][j+1]=='#') ;
  	else if(j<w-1 && S[i][j+1]=='.') dp[i][j+1][l]=(dp[i][j+1][l]+dp[i][j][l])%MOD;
  	else if(j<w-1)  dp[i][j+1][l+1]=(dp[i][j+1][l+1]+dp[i][j][l])%MOD;
  }
  ll ans=0;
  rep(l,k) ans=(ans+dp[h-1][w-1][l])%MOD;
  cout<<ans<<endl;

  return 0;
}
0