結果

問題 No.225 文字列変更(medium)
ユーザー rpy3cpprpy3cpp
提出日時 2015-06-13 14:26:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,070 ms / 5,000 ms
コード長 827 bytes
コンパイル時間 235 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 290,272 KB
最終ジャッジ日時 2024-07-06 18:51:02
合計ジャッジ時間 12,041 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 481 ms
175,196 KB
testcase_01 AC 764 ms
254,824 KB
testcase_02 AC 34 ms
52,664 KB
testcase_03 AC 33 ms
53,020 KB
testcase_04 AC 34 ms
54,324 KB
testcase_05 AC 33 ms
53,316 KB
testcase_06 AC 33 ms
52,712 KB
testcase_07 AC 33 ms
53,012 KB
testcase_08 AC 31 ms
52,160 KB
testcase_09 AC 33 ms
53,120 KB
testcase_10 AC 35 ms
54,908 KB
testcase_11 AC 34 ms
52,836 KB
testcase_12 AC 894 ms
287,536 KB
testcase_13 AC 1,066 ms
288,696 KB
testcase_14 AC 1,041 ms
272,112 KB
testcase_15 AC 407 ms
178,672 KB
testcase_16 AC 1,041 ms
289,864 KB
testcase_17 AC 450 ms
179,696 KB
testcase_18 AC 1,070 ms
236,664 KB
testcase_19 AC 1,024 ms
289,160 KB
testcase_20 AC 693 ms
251,548 KB
testcase_21 AC 1,019 ms
290,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def read_data():
    n, m = map(int, input().split())
    S = input().strip()
    T = input().strip()
    return n, m, S, T

memo = dict()
def f(a, b, S, T):
    '''
    f(a, b, S, T) S[:a] を T[:b] に変更するのに必要な最低ステップ数
    '''
    global memo
    if (a, b) in memo:
        return memo[a, b]
    if a == 0:
        return b
    if b == 0:
        return a
    s = S[a - 1]
    t = T[b - 1]
    if s == t:
        memo[a, b] = f(a-1, b-1, S, T)
        return memo[a, b]
    if s != t:
        steps_change = 1 + f(a-1, b-1, S, T)
        steps_insert = 1 + f(a,   b-1, S, T)
        steps_delete = 1 + f(a-1, b,   S, T)
        memo[a, b] = min(steps_change, steps_insert, steps_delete)
        return memo[a, b]

if __name__ == '__main__':
    n, m, S, T = read_data()
    print(f(n, m, S, T))
0