結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 604 ms
15,872 KB
testcase_01 AC 1,032 ms
24,320 KB
testcase_02 AC 12 ms
6,400 KB
testcase_03 AC 11 ms
6,272 KB
testcase_04 AC 12 ms
6,272 KB
testcase_05 AC 12 ms
6,272 KB
testcase_06 AC 13 ms
6,144 KB
testcase_07 AC 12 ms
6,016 KB
testcase_08 AC 12 ms
6,272 KB
testcase_09 AC 13 ms
6,144 KB
testcase_10 AC 12 ms
6,144 KB
testcase_11 AC 12 ms
6,272 KB
testcase_12 AC 1,421 ms
27,136 KB
testcase_13 AC 1,544 ms
32,384 KB
testcase_14 AC 1,492 ms
31,232 KB
testcase_15 AC 1,422 ms
19,840 KB
testcase_16 AC 1,456 ms
31,104 KB
testcase_17 AC 1,427 ms
19,712 KB
testcase_18 AC 1,378 ms
23,808 KB
testcase_19 AC 1,438 ms
30,976 KB
testcase_20 AC 1,412 ms
25,344 KB
testcase_21 AC 1,424 ms
29,952 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