結果

問題 No.225 文字列変更(medium)
ユーザー TawaraTawara
提出日時 2015-08-04 20:07:16
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 344 bytes
コンパイル時間 64 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 34,304 KB
最終ジャッジ日時 2024-07-18 01:19:16
合計ジャッジ時間 10,169 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 551 ms
25,216 KB
testcase_02 AC 11 ms
6,144 KB
testcase_03 AC 11 ms
6,144 KB
testcase_04 AC 12 ms
6,144 KB
testcase_05 AC 11 ms
6,272 KB
testcase_06 AC 11 ms
6,272 KB
testcase_07 WA -
testcase_08 AC 11 ms
6,144 KB
testcase_09 AC 12 ms
6,144 KB
testcase_10 AC 12 ms
6,144 KB
testcase_11 AC 12 ms
6,144 KB
testcase_12 AC 768 ms
31,104 KB
testcase_13 AC 834 ms
34,304 KB
testcase_14 AC 811 ms
33,280 KB
testcase_15 AC 765 ms
26,496 KB
testcase_16 AC 782 ms
32,256 KB
testcase_17 AC 772 ms
26,496 KB
testcase_18 AC 749 ms
29,312 KB
testcase_19 AC 784 ms
32,640 KB
testcase_20 AC 733 ms
29,568 KB
testcase_21 AC 774 ms
32,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int,raw_input().split(" "))
S = list(raw_input())
T = list(raw_input())
dp = [[1000 for i in range(n+1)] for j in range(m+1)]
for i in range(n+1):
	dp[0][i] = i
for i in range(1,m+1):
	dp[i][0] = i
for i in range(1,m+1):
	for j in range(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