結果

問題 No.225 文字列変更(medium)
ユーザー Kaito KoikeKaito Koike
提出日時 2018-05-20 12:14:22
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 775 bytes
コンパイル時間 72 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 69,344 KB
最終ジャッジ日時 2024-06-28 14:37:06
合計ジャッジ時間 39,309 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,402 ms
50,900 KB
testcase_01 AC 2,022 ms
59,604 KB
testcase_02 AC 504 ms
44,380 KB
testcase_03 AC 497 ms
44,120 KB
testcase_04 AC 507 ms
43,868 KB
testcase_05 WA -
testcase_06 AC 509 ms
44,124 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 499 ms
44,376 KB
testcase_10 AC 510 ms
44,380 KB
testcase_11 AC 513 ms
44,120 KB
testcase_12 AC 2,646 ms
63,956 KB
testcase_13 WA -
testcase_14 AC 2,760 ms
66,516 KB
testcase_15 AC 2,668 ms
58,328 KB
testcase_16 AC 2,798 ms
66,520 KB
testcase_17 AC 2,657 ms
58,972 KB
testcase_18 AC 2,608 ms
61,016 KB
testcase_19 AC 2,705 ms
66,400 KB
testcase_20 WA -
testcase_21 AC 2,699 ms
65,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
n,m = map(int,input().split())

S = list(input())
T = list(input())

dp = [[987654321 for i in range(len(S)+1)] for j in range(len(T)+1)]
dp[0][0] = 0

"""
#変更
if S[i] == T[j]:
    dp[j+1][i+1] = dp[j][i]
else:
    dp[j+1][i+1] = dp[j][i] + 1

#削除
dp[j+1][i+1] = dp[j+1][i] + 1

#挿入
dp[j+1][i+1] = dp[j][i+1] + 1
"""

for i in range(len(S)):
    for j in range(len(T)):
        if i >=0 and j >= 0:
            if S[i]== T[j]:
                dp[j+1][i+1] = min(dp[j][i],dp[j+1][i+1])
            else:
                dp[j+1][i+1] = min(dp[j][i]+1,dp[j+1][i+1])
        if i >= 0:
            dp[j+1][i+1] = min(dp[j+1][i]+1,dp[j+1][i+1])
        if j >= 0:
            dp[j+1][i+1] = min(dp[j][i+1]+1,dp[j+1][i+1])

print(dp[len(T)][len(S)])
0