結果

問題 No.225 文字列変更(medium)
ユーザー tentententen
提出日時 2021-12-02 19:12:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 115 ms / 5,000 ms
コード長 1,656 bytes
コンパイル時間 2,211 ms
コンパイル使用メモリ 77,948 KB
実行使用メモリ 47,004 KB
最終ジャッジ日時 2024-07-05 02:01:01
合計ジャッジ時間 4,919 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 90 ms
40,676 KB
testcase_01 AC 100 ms
42,132 KB
testcase_02 AC 52 ms
36,888 KB
testcase_03 AC 54 ms
36,820 KB
testcase_04 AC 53 ms
36,892 KB
testcase_05 AC 52 ms
37,020 KB
testcase_06 AC 53 ms
37,108 KB
testcase_07 AC 52 ms
36,816 KB
testcase_08 AC 54 ms
37,012 KB
testcase_09 AC 54 ms
36,912 KB
testcase_10 AC 53 ms
37,068 KB
testcase_11 AC 53 ms
37,152 KB
testcase_12 AC 110 ms
42,940 KB
testcase_13 AC 115 ms
47,004 KB
testcase_14 AC 106 ms
46,856 KB
testcase_15 AC 97 ms
45,724 KB
testcase_16 AC 105 ms
46,564 KB
testcase_17 AC 96 ms
42,232 KB
testcase_18 AC 104 ms
42,976 KB
testcase_19 AC 109 ms
46,576 KB
testcase_20 AC 111 ms
42,636 KB
testcase_21 AC 107 ms
43,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static char[] start;
    static char[] term;
    static int[][] dp;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int m = sc.nextInt();
        start = sc.next().toCharArray();
        term = 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 x, int y) {
        if (x < 0) {
            return y + 1;
        }
        if (y < 0) {
            return x + 1;
        }
        if (dp[x][y] < 0) {
            if (start[x] == term[y]) {
                dp[x][y] = dfw(x - 1, y - 1);
            } else {
                dp[x][y] = Math.min(dfw(x - 1, y - 1), Math.min(dfw(x - 1, y), dfw(x, y - 1))) + 1;
            }
        }
        return dp[x][y];
    }
}
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 {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0