結果

問題 No.225 文字列変更(medium)
ユーザー takeya_okinotakeya_okino
提出日時 2017-07-07 19:30:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 169 ms / 5,000 ms
コード長 969 bytes
コンパイル時間 2,117 ms
コンパイル使用メモリ 77,036 KB
実行使用メモリ 59,104 KB
最終ジャッジ日時 2024-10-06 10:02:32
合計ジャッジ時間 6,370 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 163 ms
56,352 KB
testcase_01 AC 159 ms
56,120 KB
testcase_02 AC 134 ms
54,104 KB
testcase_03 AC 135 ms
54,308 KB
testcase_04 AC 136 ms
54,168 KB
testcase_05 AC 135 ms
54,128 KB
testcase_06 AC 137 ms
54,260 KB
testcase_07 AC 144 ms
54,044 KB
testcase_08 AC 134 ms
54,048 KB
testcase_09 AC 136 ms
54,448 KB
testcase_10 AC 139 ms
54,216 KB
testcase_11 AC 134 ms
54,272 KB
testcase_12 AC 166 ms
58,976 KB
testcase_13 AC 168 ms
58,900 KB
testcase_14 AC 165 ms
58,652 KB
testcase_15 AC 167 ms
59,000 KB
testcase_16 AC 166 ms
59,104 KB
testcase_17 AC 164 ms
58,664 KB
testcase_18 AC 169 ms
58,768 KB
testcase_19 AC 166 ms
59,040 KB
testcase_20 AC 164 ms
59,064 KB
testcase_21 AC 165 ms
58,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  // レーベンシュタイン距離(編集距離)を求めるプログラム
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    int n = sc.nextInt();
    int m = sc.nextInt();
    String s = sc.next();
    String t = sc.next();
    // dp[i][j]はsのi文字目までを編集してtのj文字目までにする編集回数の最小値
    int[][] dp = new int[n + 1][m + 1];
    for(int i = 0; i < n + 1; i++) {
      dp[i][0] = i;
    }
    for(int i = 0; i < m + 1; i++) {
      dp[0][i] = i;
    }
    for(int i = 1; i < n + 1; i++) {
      for(int j = 1; j < m + 1; j++) {
        int a = Math.min(dp[i - 1][j] + 1, dp[i][j - 1] + 1);
        if(s.charAt(i - 1) == t.charAt(j - 1)) {
          a = Math.min(a, dp[i - 1][j - 1]);
        } else {
          a = Math.min(a, dp[i - 1][j - 1] + 1);
        }
        dp[i][j] = a;
      }
    }
    System.out.println(dp[n][m]);
  }
}
0