結果

問題 No.971 いたずらっ子
ユーザー SugihaMSugihaM
提出日時 2020-04-21 17:10:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 580 ms / 2,000 ms
コード長 1,148 bytes
コンパイル時間 2,334 ms
コンパイル使用メモリ 77,272 KB
実行使用メモリ 74,796 KB
最終ジャッジ日時 2024-11-07 11:44:22
合計ジャッジ時間 11,358 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 571 ms
74,796 KB
testcase_01 AC 575 ms
74,704 KB
testcase_02 AC 565 ms
73,580 KB
testcase_03 AC 568 ms
74,480 KB
testcase_04 AC 580 ms
72,888 KB
testcase_05 AC 559 ms
74,476 KB
testcase_06 AC 580 ms
73,792 KB
testcase_07 AC 174 ms
41,976 KB
testcase_08 AC 459 ms
52,152 KB
testcase_09 AC 441 ms
52,600 KB
testcase_10 AC 180 ms
41,516 KB
testcase_11 AC 133 ms
41,328 KB
testcase_12 AC 135 ms
41,052 KB
testcase_13 AC 137 ms
41,264 KB
testcase_14 AC 179 ms
42,508 KB
testcase_15 AC 136 ms
40,216 KB
testcase_16 AC 148 ms
41,588 KB
testcase_17 AC 137 ms
41,180 KB
testcase_18 AC 136 ms
41,052 KB
testcase_19 AC 136 ms
41,148 KB
testcase_20 AC 135 ms
41,048 KB
testcase_21 AC 139 ms
41,428 KB
testcase_22 AC 142 ms
41,332 KB
testcase_23 AC 135 ms
41,484 KB
testcase_24 AC 134 ms
41,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main{
  public static void main(String[] args) throws Exception {
    Scanner sc=new Scanner(System.in);
    int h = sc.nextInt();
    int w = sc.nextInt();
    int[][] a = new int[h][w];

    for(int i = 0;i < h;i++){
      String s = sc.next();
      for(int j = 0;j < w;j++){
        if(s.charAt(j) == '.'){
          a[i][j]=0;
        }else{
          a[i][j]=1;
        }
      }
    }

    int[][] dp =new int[h][w];
    int INM = 1145141919;
    for(int i = 0;i < h;i++){
      for(int j = 0;j < w;j++){
        dp[i][j]=INM;
      }
    }

    dp[0][0] = 0;
    for(int i = 0;i < h;i++){
      for(int j = 0;j < w;j++){
        if(a[i][j] == 0){
          if (i > 0) {
    				dp[i][j] = Math.min(dp[i][j], dp[i-1][j] + 1);
    			}
    			if (j > 0) {
    				dp[i][j] = Math.min(dp[i][j], dp[i][j-1] + 1);
    			}
        }else{
          if (i > 0){
            dp[i][j] = Math.min(dp[i][j], dp[i-1][j] + 1 + i + j);
          }
          if (j > 0){
            dp[i][j] = Math.min(dp[i][j], dp[i][j-1] + 1 + i + j);
          }
        }
      }
    }
    System.out.println(dp[h - 1][w - 1]);
  }
}
0