結果

問題 No.971 いたずらっ子
ユーザー amaridekinaiamaridekinai
提出日時 2020-01-17 21:49:45
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 228 ms / 2,000 ms
コード長 990 bytes
コンパイル時間 1,376 ms
コンパイル使用メモリ 163,484 KB
実行使用メモリ 23,424 KB
最終ジャッジ日時 2024-04-25 01:59:47
合計ジャッジ時間 4,245 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 228 ms
23,296 KB
testcase_01 AC 206 ms
23,296 KB
testcase_02 AC 160 ms
23,424 KB
testcase_03 AC 228 ms
23,416 KB
testcase_04 AC 193 ms
23,328 KB
testcase_05 AC 198 ms
23,424 KB
testcase_06 AC 160 ms
22,912 KB
testcase_07 AC 8 ms
19,712 KB
testcase_08 AC 61 ms
21,632 KB
testcase_09 AC 60 ms
21,504 KB
testcase_10 AC 9 ms
19,456 KB
testcase_11 AC 8 ms
19,712 KB
testcase_12 AC 9 ms
19,456 KB
testcase_13 AC 7 ms
19,712 KB
testcase_14 AC 8 ms
23,424 KB
testcase_15 AC 7 ms
19,584 KB
testcase_16 AC 6 ms
19,968 KB
testcase_17 AC 6 ms
19,456 KB
testcase_18 AC 7 ms
19,584 KB
testcase_19 AC 7 ms
19,712 KB
testcase_20 AC 7 ms
19,584 KB
testcase_21 AC 6 ms
19,584 KB
testcase_22 AC 6 ms
19,456 KB
testcase_23 AC 7 ms
19,712 KB
testcase_24 AC 8 ms
19,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>

using namespace std;
typedef long long ll;

const int SIZE = 2020;

char s[SIZE][SIZE];

int dp[SIZE][SIZE];

int main(){ 
  
  int h,w; cin >> h >> w;
  
  for(int i = 0; i < h; i++){
    for(int j = 0; j < w; j++){ 
      cin >> s[i][j];
    }
  }
  
  for(int i = 0; i < SIZE; i++){
    for(int j = 0; j < SIZE; j++){
      dp[i][j] = -1;
    }
  }
  
  dp[0][0] = 0;
  
  for(int i = 1; i < h; i++){
    if(s[i][0] == '.'){ dp[i][0] = dp[i-1][0]+1;}
    else{ dp[i][0] = dp[i-1][0]+1+0+i;}
  }
  
  for(int j = 1; j < w; j++){
    if(s[0][j] == '.'){ dp[0][j] = dp[0][j-1]+1;}
    else{ dp[0][j] = dp[0][j-1]+1+0+j;}
  }
  
  for(int i = 0; i < h; i++){
    for(int j = 0; j < w; j++){
      
      if( dp[i][j] != -1){ continue;}
      
      if( s[i][j] == '.'){  
        dp[i][j] = min(dp[i-1][j],dp[i][j-1])+1;}
      else{
        dp[i][j] = min(dp[i-1][j],dp[i][j-1])+1+0+i+j;}
      
    }
  }
  
  cout << dp[h-1][w-1] << endl;
  
  return 0;
}
       
0