結果

問題 No.225 文字列変更(medium)
ユーザー konsin_tokagekonsin_tokage
提出日時 2018-03-28 10:19:55
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 426 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 166,464 KB
最終ジャッジ日時 2024-06-25 13:04:47
合計ジャッジ時間 32,697 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 31 ms
10,752 KB
testcase_05 AC 31 ms
10,880 KB
testcase_06 AC 33 ms
10,752 KB
testcase_07 AC 31 ms
10,880 KB
testcase_08 AC 31 ms
10,752 KB
testcase_09 AC 31 ms
10,880 KB
testcase_10 AC 31 ms
10,880 KB
testcase_11 AC 31 ms
10,752 KB
testcase_12 AC 3,018 ms
155,620 KB
testcase_13 AC 3,326 ms
166,464 KB
testcase_14 AC 3,160 ms
162,908 KB
testcase_15 AC 2,982 ms
149,936 KB
testcase_16 AC 3,095 ms
159,360 KB
testcase_17 AC 3,073 ms
150,596 KB
testcase_18 AC 2,945 ms
152,156 KB
testcase_19 AC 3,069 ms
158,820 KB
testcase_20 AC 2,905 ms
153,788 KB
testcase_21 AC 3,043 ms
157,804 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
s = input()
t = input()
memo = {}
def dfs(i, j):
    if i == n and j == m:
        return 0
    if (i,j) in memo:
        return memo[i,j]
    res = 1001
    if i < n and j < m:
        res = min(res, int(s[i]!=t[j]) + dfs(i+1, j+1))
    if i < n:
        res = min(res, 1 + dfs(i+1, j))
    if j < m:
        res = min(res, 1 + dfs(i, j+1))
    memo[i,j] = res
    return res
print(dfs(0, 0))
0