結果

問題 No.225 文字列変更(medium)
ユーザー yaoshimaxyaoshimax
提出日時 2015-06-13 13:36:29
言語 Python2
(2.7.18)
結果
AC  
実行時間 1,339 ms / 5,000 ms
コード長 529 bytes
コンパイル時間 307 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 32,384 KB
最終ジャッジ日時 2024-06-06 17:33:11
合計ジャッジ時間 15,594 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 510 ms
15,872 KB
testcase_01 AC 875 ms
24,320 KB
testcase_02 AC 9 ms
6,144 KB
testcase_03 AC 9 ms
6,144 KB
testcase_04 AC 9 ms
6,144 KB
testcase_05 AC 10 ms
6,144 KB
testcase_06 AC 9 ms
6,144 KB
testcase_07 AC 9 ms
6,144 KB
testcase_08 AC 9 ms
6,272 KB
testcase_09 AC 10 ms
6,272 KB
testcase_10 AC 9 ms
6,272 KB
testcase_11 AC 9 ms
6,144 KB
testcase_12 AC 1,196 ms
27,264 KB
testcase_13 AC 1,339 ms
32,384 KB
testcase_14 AC 1,278 ms
31,104 KB
testcase_15 AC 1,189 ms
19,840 KB
testcase_16 AC 1,217 ms
30,976 KB
testcase_17 AC 1,218 ms
19,584 KB
testcase_18 AC 1,157 ms
23,680 KB
testcase_19 AC 1,217 ms
30,848 KB
testcase_20 AC 1,159 ms
25,472 KB
testcase_21 AC 1,204 ms
29,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,raw_input().split())
S=raw_input()
T=raw_input()
dp=[[10000 for i in range(m+1)] for j in range(n+1)]
dp[0][0]=0
for i in range(1,n+1):
    dp[i][0] = i
for j in range(1,m+1):
    dp[0][j]= j

for i in range(1, n+1):
    for j in range(1, m+1):
        if S[i-1]==T[j-1]:
            dp[i][j] = min(dp[i][j],dp[i-1][j-1])
        else:
            dp[i][j] = min(dp[i][j],1+dp[i-1][j-1])
        dp[i][j]=min(dp[i][j],dp[i-1][j]+1) # delete S[i]
        dp[i][j]=min(dp[i][j],dp[i][j-1]+1) # add T[j]
print dp[n][m]

0