結果

問題 No.2430 Damage Zone
ユーザー umezoumezo
提出日時 2023-08-24 07:07:07
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 20 ms / 2,000 ms
コード長 895 bytes
コンパイル時間 2,085 ms
コンパイル使用メモリ 205,100 KB
実行使用メモリ 20,736 KB
最終ジャッジ日時 2024-06-02 02:59:57
合計ジャッジ時間 3,219 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 18 ms
18,048 KB
testcase_01 AC 8 ms
9,600 KB
testcase_02 AC 20 ms
18,560 KB
testcase_03 AC 3 ms
6,940 KB
testcase_04 AC 3 ms
6,940 KB
testcase_05 AC 5 ms
7,424 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 1 ms
6,944 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 1 ms
6,944 KB
testcase_11 AC 3 ms
6,944 KB
testcase_12 AC 3 ms
6,940 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 19 ms
18,432 KB
testcase_15 AC 19 ms
18,944 KB
testcase_16 AC 20 ms
19,072 KB
testcase_17 AC 11 ms
12,032 KB
testcase_18 AC 6 ms
7,040 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 13 ms
12,672 KB
testcase_21 AC 4 ms
6,940 KB
testcase_22 AC 9 ms
11,392 KB
testcase_23 AC 10 ms
11,776 KB
testcase_24 AC 8 ms
9,472 KB
testcase_25 AC 19 ms
20,480 KB
testcase_26 AC 20 ms
20,480 KB
testcase_27 AC 20 ms
20,736 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