結果

問題 No.225 文字列変更(medium)
ユーザー kou6839kou6839
提出日時 2015-08-11 18:43:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 184 ms / 5,000 ms
コード長 695 bytes
コンパイル時間 4,631 ms
コンパイル使用メモリ 84,152 KB
実行使用メモリ 48,416 KB
最終ジャッジ日時 2024-06-06 17:49:38
合計ジャッジ時間 7,278 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 174 ms
48,000 KB
testcase_01 AC 179 ms
47,896 KB
testcase_02 AC 140 ms
47,228 KB
testcase_03 AC 144 ms
48,028 KB
testcase_04 AC 144 ms
48,100 KB
testcase_05 AC 145 ms
47,860 KB
testcase_06 AC 137 ms
48,288 KB
testcase_07 AC 134 ms
47,716 KB
testcase_08 AC 126 ms
47,672 KB
testcase_09 AC 123 ms
47,808 KB
testcase_10 AC 136 ms
47,824 KB
testcase_11 AC 143 ms
47,952 KB
testcase_12 AC 179 ms
47,612 KB
testcase_13 AC 180 ms
48,140 KB
testcase_14 AC 177 ms
47,936 KB
testcase_15 AC 168 ms
48,416 KB
testcase_16 AC 158 ms
47,952 KB
testcase_17 AC 184 ms
48,252 KB
testcase_18 AC 172 ms
47,820 KB
testcase_19 AC 173 ms
47,988 KB
testcase_20 AC 158 ms
48,112 KB
testcase_21 AC 172 ms
47,832 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