結果

問題 No.225 文字列変更(medium)
ユーザー mobius_bkstmobius_bkst
提出日時 2015-06-15 13:55:10
言語 Java21
(openjdk 21)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 1,996 bytes
コンパイル時間 2,895 ms
コンパイル使用メモリ 78,556 KB
実行使用メモリ 61,572 KB
最終ジャッジ日時 2024-07-06 20:52:42
合計ジャッジ時間 6,665 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 55 ms
55,380 KB
testcase_03 AC 57 ms
55,092 KB
testcase_04 AC 56 ms
55,048 KB
testcase_05 AC 54 ms
55,280 KB
testcase_06 AC 55 ms
55,492 KB
testcase_07 AC 56 ms
54,936 KB
testcase_08 AC 53 ms
55,324 KB
testcase_09 AC 54 ms
55,340 KB
testcase_10 AC 54 ms
55,300 KB
testcase_11 AC 54 ms
55,416 KB
testcase_12 AC 140 ms
61,148 KB
testcase_13 AC 141 ms
61,140 KB
testcase_14 AC 200 ms
61,364 KB
testcase_15 AC 157 ms
61,108 KB
testcase_16 AC 159 ms
61,248 KB
testcase_17 AC 182 ms
61,128 KB
testcase_18 AC 169 ms
61,196 KB
testcase_19 AC 208 ms
61,476 KB
testcase_20 AC 196 ms
61,572 KB
testcase_21 AC 148 ms
61,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class No225 {
    public static void main(String[] args) {
        try {
            BufferedReader br = new BufferedReader(new InputStreamReader(
                    System.in));
            int[] a = strToIntArray(br.readLine());
            int n = a[0];
            int m = a[1];
            String S = br.readLine() + "_";
            String T = br.readLine() + "_";

            int[][] dp = new int[1001][1001];
            for (int i = 0; i < n + 1; i++) {
                for (int j = 0; j < m + 1; j++) {
                    dp[i][j] = Integer.MAX_VALUE;
                }
            }
            dp[0][0] = 0;

            for (int i = 0; i < n + 1; i++) {
                for (int j = 0; j < m + 1; j++) {

                    // 文字を追加する
                    if (i <= n) {
                        dp[i][j + 1] = Math.min(dp[i][j + 1], dp[i][j] + 1);
                    }

                    // 文字を削除する
                    if (j <= m) {
                        dp[i + 1][j] = Math.min(dp[i + 1][j], dp[i][j] + 1);
                    }

                    // 文字を変更する
                    if (S.substring(i, i + 1).equals(T.substring(j, j + 1))) {
                        dp[i + 1][j + 1] = Math.min(dp[i + 1][j + 1], dp[i][j]);
                    } else {
                        dp[i + 1][j + 1] = Math.min(dp[i + 1][j + 1],
                                dp[i][j] + 1);
                    }

                }
            }
            System.out.println(dp[n][m]);

        } catch (Exception e) {
            System.err.println("Error:" + e.getMessage());
        }
    }

    static int[] strToIntArray(String S) {
        String[] strArray = S.split(" ");
        int[] intArray = new int[strArray.length];
        for (int i = 0; i < strArray.length; i++) {
            intArray[i] = Integer.parseInt(strArray[i]);
        }
        return intArray;
    }
}
0