結果

問題 No.225 文字列変更(medium)
ユーザー tentententen
提出日時 2020-12-23 09:38:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 181 ms / 5,000 ms
コード長 941 bytes
コンパイル時間 1,942 ms
コンパイル使用メモリ 77,796 KB
実行使用メモリ 48,488 KB
最終ジャッジ日時 2024-09-21 16:17:24
合計ジャッジ時間 6,127 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 147 ms
43,180 KB
testcase_01 AC 158 ms
43,880 KB
testcase_02 AC 116 ms
41,240 KB
testcase_03 AC 107 ms
40,712 KB
testcase_04 AC 103 ms
40,064 KB
testcase_05 AC 98 ms
39,924 KB
testcase_06 AC 117 ms
41,136 KB
testcase_07 AC 110 ms
41,060 KB
testcase_08 AC 102 ms
40,064 KB
testcase_09 AC 112 ms
41,624 KB
testcase_10 AC 103 ms
40,080 KB
testcase_11 AC 112 ms
41,268 KB
testcase_12 AC 165 ms
48,488 KB
testcase_13 AC 164 ms
48,148 KB
testcase_14 AC 181 ms
48,268 KB
testcase_15 AC 149 ms
47,660 KB
testcase_16 AC 165 ms
48,288 KB
testcase_17 AC 167 ms
48,176 KB
testcase_18 AC 165 ms
48,128 KB
testcase_19 AC 168 ms
48,292 KB
testcase_20 AC 169 ms
48,420 KB
testcase_21 AC 165 ms
48,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static char[] sArr;
    static char[] tArr;
    static int[][] dp;
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int m = sc.nextInt();
        sArr = sc.next().toCharArray();
        tArr = sc.next().toCharArray();
        dp = new int[n][m];
        for (int[] arr : dp) {
            Arrays.fill(arr, -1);
        }
        System.out.println(dfw(n - 1, m - 1));
    }
    
    static int dfw(int s, int t) {
        if (s < 0) {
            return t + 1;
        }
        if (t < 0) {
            return s + 1;
        }
        if (dp[s][t] < 0) {
            if (sArr[s] == tArr[t]) {
                dp[s][t] = dfw(s - 1, t - 1);
            } else {
                dp[s][t] = Math.min(Math.min(dfw(s - 1, t), dfw(s - 1, t - 1)), dfw(s, t - 1)) + 1;
            }
        }
        return dp[s][t];
    }
}
0