結果

問題 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,374 ms / 5,000 ms
コード長 857 bytes
コンパイル時間 125 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 42,368 KB
最終ジャッジ日時 2024-06-06 20:07:30
合計ジャッジ時間 15,929 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 511 ms
22,144 KB
testcase_01 AC 903 ms
32,384 KB
testcase_02 AC 26 ms
10,880 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 AC 26 ms
10,752 KB
testcase_05 AC 26 ms
10,880 KB
testcase_06 AC 26 ms
10,752 KB
testcase_07 AC 26 ms
10,880 KB
testcase_08 AC 28 ms
10,752 KB
testcase_09 AC 27 ms
11,008 KB
testcase_10 AC 26 ms
10,752 KB
testcase_11 AC 25 ms
10,752 KB
testcase_12 AC 1,307 ms
35,840 KB
testcase_13 AC 1,374 ms
42,368 KB
testcase_14 AC 1,337 ms
40,576 KB
testcase_15 AC 1,260 ms
25,856 KB
testcase_16 AC 1,294 ms
39,936 KB
testcase_17 AC 1,260 ms
25,856 KB
testcase_18 AC 1,240 ms
30,976 KB
testcase_19 AC 1,299 ms
40,192 KB
testcase_20 AC 1,211 ms
33,024 KB
testcase_21 AC 1,293 ms
38,656 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