結果

問題 No.225 文字列変更(medium)
ユーザー kou6839kou6839
提出日時 2015-08-11 18:43:05
言語 Java
(openjdk 23)
結果
AC  
実行時間 207 ms / 5,000 ms
コード長 695 bytes
コンパイル時間 5,119 ms
コンパイル使用メモリ 86,640 KB
実行使用メモリ 48,252 KB
最終ジャッジ日時 2024-12-24 10:43:56
合計ジャッジ時間 9,063 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 204 ms
47,944 KB
testcase_01 AC 201 ms
47,744 KB
testcase_02 AC 168 ms
47,808 KB
testcase_03 AC 165 ms
47,844 KB
testcase_04 AC 170 ms
47,728 KB
testcase_05 AC 154 ms
46,836 KB
testcase_06 AC 150 ms
46,752 KB
testcase_07 AC 169 ms
47,648 KB
testcase_08 AC 164 ms
47,596 KB
testcase_09 AC 148 ms
46,828 KB
testcase_10 AC 166 ms
48,112 KB
testcase_11 AC 164 ms
47,704 KB
testcase_12 AC 204 ms
48,048 KB
testcase_13 AC 206 ms
47,916 KB
testcase_14 AC 205 ms
47,888 KB
testcase_15 AC 203 ms
47,736 KB
testcase_16 AC 205 ms
48,084 KB
testcase_17 AC 203 ms
47,984 KB
testcase_18 AC 205 ms
47,488 KB
testcase_19 AC 207 ms
48,252 KB
testcase_20 AC 205 ms
48,076 KB
testcase_21 AC 206 ms
47,708 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();
		S+="-";
		T+="-";
		int dp[][]=new int[1010][1010];
		for(int i=0;i<1010;i++) Arrays.fill(dp[i], 114514);
		dp[0][0]=0;
		for(int i=0;i<=n;i++){
			for(int j=0;j<=m;j++){
				if( S.charAt(i)==T.charAt(j)){
					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);
				}
				dp[i+1][j]=Math.min(dp[i+1][j], dp[i][j]+1);
				dp[i][j+1]=Math.min(dp[i][j+1], dp[i][j]+1);

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

	}
}
0