結果

問題 No.225 文字列変更(medium)
ユーザー tentententen
提出日時 2022-08-19 19:42:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 5,000 ms
コード長 1,639 bytes
コンパイル時間 2,597 ms
コンパイル使用メモリ 77,524 KB
実行使用メモリ 46,916 KB
最終ジャッジ日時 2024-10-08 04:37:53
合計ジャッジ時間 5,339 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
39,952 KB
testcase_01 AC 104 ms
41,932 KB
testcase_02 AC 54 ms
36,796 KB
testcase_03 AC 54 ms
36,780 KB
testcase_04 AC 54 ms
36,708 KB
testcase_05 AC 53 ms
36,780 KB
testcase_06 AC 54 ms
36,548 KB
testcase_07 AC 56 ms
36,780 KB
testcase_08 AC 55 ms
36,536 KB
testcase_09 AC 55 ms
36,956 KB
testcase_10 AC 55 ms
36,960 KB
testcase_11 AC 55 ms
37,084 KB
testcase_12 AC 109 ms
43,024 KB
testcase_13 AC 129 ms
46,916 KB
testcase_14 AC 115 ms
46,836 KB
testcase_15 AC 95 ms
46,108 KB
testcase_16 AC 116 ms
46,912 KB
testcase_17 AC 90 ms
42,084 KB
testcase_18 AC 107 ms
42,832 KB
testcase_19 AC 128 ms
46,792 KB
testcase_20 AC 107 ms
42,696 KB
testcase_21 AC 119 ms
43,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    static char[] s;
    static char[] t;
    static int[][] dp;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int m = sc.nextInt();
        s = sc.next().toCharArray();
        t = 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 a, int b) {
        if (a < 0) {
            return b + 1;
        }
        if (b < 0) {
            return a + 1;
        }
        if (dp[a][b] < 0) {
            if (s[a] == t[b]) {
                dp[a][b] = dfw(a - 1, b - 1);
            } else {
                dp[a][b] = Math.min(dfw(a - 1, b), Math.min(dfw(a, b - 1), dfw(a - 1, b - 1))) + 1;
            }
        }
        return dp[a][b];
    }
}

class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0