結果

問題 No.225 文字列変更(medium)
ユーザー neterukunneterukun
提出日時 2021-05-05 22:29:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 110 ms / 5,000 ms
コード長 840 bytes
コンパイル時間 309 ms
コンパイル使用メモリ 81,916 KB
実行使用メモリ 83,684 KB
最終ジャッジ日時 2024-09-13 15:02:18
合計ジャッジ時間 3,182 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
78,720 KB
testcase_01 AC 94 ms
80,384 KB
testcase_02 AC 40 ms
52,480 KB
testcase_03 AC 39 ms
52,480 KB
testcase_04 AC 40 ms
52,224 KB
testcase_05 AC 39 ms
52,480 KB
testcase_06 AC 39 ms
52,480 KB
testcase_07 AC 39 ms
52,352 KB
testcase_08 AC 39 ms
51,968 KB
testcase_09 AC 40 ms
52,608 KB
testcase_10 AC 41 ms
52,480 KB
testcase_11 AC 41 ms
52,352 KB
testcase_12 AC 108 ms
82,560 KB
testcase_13 AC 110 ms
83,684 KB
testcase_14 AC 109 ms
82,808 KB
testcase_15 AC 101 ms
82,816 KB
testcase_16 AC 106 ms
82,488 KB
testcase_17 AC 106 ms
82,944 KB
testcase_18 AC 106 ms
82,688 KB
testcase_19 AC 106 ms
83,200 KB
testcase_20 AC 107 ms
82,304 KB
testcase_21 AC 108 ms
82,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def levenshtein_distance(s, t):
    len_s = len(s)
    len_t = len(t)
    INF = 10 ** 18
    dp = [[INF] * (len_t + 1) for _ in range(len_s + 1)]
    for i in range(len_s + 1):
        dp[i][0] = i
    for j in range(len_t + 1):
        dp[0][j] = j

    for i in range(len_s):
        for j in range(len_t):
            # 変更操作
            if s[i] == t[j]:
                dp[i + 1][j + 1] = min(dp[i + 1][j + 1], dp[i][j])
            else:
                dp[i + 1][j + 1] = min(dp[i + 1][j + 1], dp[i][j] + 1)
            # 削除操作
            dp[i + 1][j + 1] = min(dp[i + 1][j + 1], dp[i][j + 1] + 1)
            # 挿入操作
            dp[i + 1][j + 1] = min(dp[i + 1][j + 1], dp[i + 1][j] + 1)

    return dp[len_s][len_t]


n, m = map(int, input().split())
s = input()
t = input()


print(levenshtein_distance(s, t))
0