結果

問題 No.225 文字列変更(medium)
ユーザー lie_of_lillielie_of_lillie
提出日時 2021-06-14 16:17:47
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,533 ms / 5,000 ms
コード長 857 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 42,368 KB
最終ジャッジ日時 2024-12-24 13:54:11
合計ジャッジ時間 17,414 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 551 ms
22,016 KB
testcase_01 AC 941 ms
32,000 KB
testcase_02 AC 27 ms
10,624 KB
testcase_03 AC 27 ms
10,624 KB
testcase_04 AC 28 ms
10,752 KB
testcase_05 AC 27 ms
10,752 KB
testcase_06 AC 27 ms
10,624 KB
testcase_07 AC 26 ms
10,752 KB
testcase_08 AC 28 ms
10,624 KB
testcase_09 AC 28 ms
10,752 KB
testcase_10 AC 27 ms
10,752 KB
testcase_11 AC 27 ms
10,624 KB
testcase_12 AC 1,310 ms
35,456 KB
testcase_13 AC 1,443 ms
42,368 KB
testcase_14 AC 1,424 ms
40,448 KB
testcase_15 AC 1,309 ms
25,856 KB
testcase_16 AC 1,326 ms
39,680 KB
testcase_17 AC 1,533 ms
25,856 KB
testcase_18 AC 1,500 ms
30,848 KB
testcase_19 AC 1,414 ms
40,064 KB
testcase_20 AC 1,262 ms
32,768 KB
testcase_21 AC 1,334 ms
38,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def levenshtein_distance(s1, s2):
    n1, n2 = len(s1), len(s2)
    dp = [[float("inf")]*(n2+1) for _ in range(n1+1)]
    for i in range(n1 + 1):
        dp[i][0] = i
    for j in range(n2 + 1):
        dp[0][j] = j
    for i in range(n1):
        for j in range(n2):
            # 変更操作
            if s1[i] == s2[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[n1][n2], dp)

def solve():
    s1 = input()
    s2 = input()
    opnum, dp = (levenshtein_distance(s1, s2))
    print(opnum)

N,M=map(int,input().split())
solve()
0