結果

問題 No.225 文字列変更(medium)
ユーザー TawaraTawara
提出日時 2015-08-04 20:13:30
言語 Python2
(2.7.18)
結果
AC  
実行時間 725 ms / 5,000 ms
コード長 336 bytes
コンパイル時間 382 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 34,048 KB
最終ジャッジ日時 2024-06-06 17:50:06
合計ジャッジ時間 9,061 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 302 ms
16,128 KB
testcase_01 AC 472 ms
24,960 KB
testcase_02 AC 10 ms
6,272 KB
testcase_03 AC 9 ms
6,272 KB
testcase_04 AC 9 ms
6,144 KB
testcase_05 AC 9 ms
6,272 KB
testcase_06 AC 9 ms
6,144 KB
testcase_07 AC 9 ms
6,144 KB
testcase_08 AC 8 ms
6,272 KB
testcase_09 AC 9 ms
6,144 KB
testcase_10 AC 9 ms
6,144 KB
testcase_11 AC 9 ms
6,144 KB
testcase_12 AC 667 ms
30,848 KB
testcase_13 AC 725 ms
34,048 KB
testcase_14 AC 703 ms
32,896 KB
testcase_15 AC 666 ms
25,984 KB
testcase_16 AC 678 ms
32,256 KB
testcase_17 AC 689 ms
26,496 KB
testcase_18 AC 655 ms
29,056 KB
testcase_19 AC 667 ms
32,256 KB
testcase_20 AC 626 ms
29,568 KB
testcase_21 AC 657 ms
31,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int,raw_input().split(" "))
S = raw_input()
T = raw_input()
dp = [[0 for i in xrange(n+1)] for j in range(m+1)]
for i in xrange(n+1):
	dp[0][i] = i
for i in xrange(1,m+1):
	dp[i][0] = i
for i in xrange(1,m+1):
	for j in xrange(1,n+1):
		dp[i][j] = min(dp[i][j-1]+1, dp[i-1][j]+1, dp[i-1][j-1]+(T[i-1]!=S[j-1]))
print dp[m][n]
0