結果

問題 No.225 文字列変更(medium)
ユーザー しらっ亭しらっ亭
提出日時 2015-06-17 22:00:58
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,445 ms / 5,000 ms
コード長 503 bytes
コンパイル時間 103 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 160,324 KB
最終ジャッジ日時 2024-06-06 17:48:25
合計ジャッジ時間 17,382 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 547 ms
79,556 KB
testcase_01 AC 927 ms
100,228 KB
testcase_02 AC 27 ms
10,496 KB
testcase_03 AC 24 ms
10,624 KB
testcase_04 AC 25 ms
10,496 KB
testcase_05 AC 25 ms
10,496 KB
testcase_06 AC 25 ms
10,496 KB
testcase_07 AC 25 ms
10,496 KB
testcase_08 AC 24 ms
10,496 KB
testcase_09 AC 26 ms
10,496 KB
testcase_10 AC 25 ms
10,496 KB
testcase_11 AC 25 ms
10,496 KB
testcase_12 AC 1,372 ms
149,856 KB
testcase_13 AC 1,445 ms
160,324 KB
testcase_14 AC 1,425 ms
156,796 KB
testcase_15 AC 1,340 ms
144,216 KB
testcase_16 AC 1,382 ms
153,408 KB
testcase_17 AC 1,333 ms
144,600 KB
testcase_18 AC 1,322 ms
146,744 KB
testcase_19 AC 1,363 ms
152,980 KB
testcase_20 AC 1,308 ms
148,028 KB
testcase_21 AC 1,346 ms
152,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(s1, s2):
    d = {}

    for i in range(len(s1) + 1):
        d[i, 0] = i
    for j in range(len(s2) + 1):
        d[0, j] = j

    for i in range(1, len(s1) + 1):
        for j in range(1, len(s2) + 1):
            n = 0 if s1[i - 1] == s2[j - 1] else 1
            d[i, j] = min(d[i - 1, j] + 1, d[i, j - 1] + 1, d[i - 1, j - 1] + n)

    return d[len(s1), len(s2)]


def main():
    input()
    s1 = input()
    s2 = input()
    print(solve(s1, s2))


if __name__ == '__main__':
    main()
0