結果

問題 No.225 文字列変更(medium)
ユーザー konsin_tokagekonsin_tokage
提出日時 2018-03-28 12:03:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 78 ms / 5,000 ms
コード長 318 bytes
コンパイル時間 239 ms
コンパイル使用メモリ 82,728 KB
実行使用メモリ 76,016 KB
最終ジャッジ日時 2024-06-25 13:06:46
合計ジャッジ時間 2,371 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
75,912 KB
testcase_01 AC 71 ms
75,856 KB
testcase_02 AC 39 ms
51,820 KB
testcase_03 AC 38 ms
52,028 KB
testcase_04 AC 39 ms
53,188 KB
testcase_05 AC 38 ms
51,872 KB
testcase_06 AC 39 ms
53,100 KB
testcase_07 AC 38 ms
52,276 KB
testcase_08 AC 39 ms
52,552 KB
testcase_09 AC 40 ms
52,856 KB
testcase_10 AC 41 ms
54,024 KB
testcase_11 AC 39 ms
52,832 KB
testcase_12 AC 78 ms
75,648 KB
testcase_13 AC 78 ms
75,560 KB
testcase_14 AC 76 ms
75,956 KB
testcase_15 AC 74 ms
75,628 KB
testcase_16 AC 76 ms
76,016 KB
testcase_17 AC 77 ms
75,780 KB
testcase_18 AC 76 ms
75,556 KB
testcase_19 AC 77 ms
75,908 KB
testcase_20 AC 77 ms
75,524 KB
testcase_21 AC 77 ms
75,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
s = input()
t = input()
dp = list(range(m+1))
prev = 0
for i in range(1, n+1):
    prev = dp[0]
    dp[0] = i
    for j in range(1, m+1):
        dp[j] , prev = min(
                int(s[i-1]!=t[j-1]) + prev,
                1 + dp[j],
                1 + dp[j-1]), dp[j]
print(dp[m])
0