結果

問題 No.225 文字列変更(medium)
ユーザー brthyyjpbrthyyjp
提出日時 2020-09-22 11:42:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 102 ms / 5,000 ms
コード長 606 bytes
コンパイル時間 274 ms
コンパイル使用メモリ 82,900 KB
実行使用メモリ 84,508 KB
最終ジャッジ日時 2024-06-25 22:58:03
合計ジャッジ時間 2,720 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
84,256 KB
testcase_01 AC 88 ms
83,792 KB
testcase_02 AC 40 ms
62,452 KB
testcase_03 AC 39 ms
60,692 KB
testcase_04 AC 40 ms
61,196 KB
testcase_05 AC 39 ms
60,396 KB
testcase_06 AC 40 ms
61,064 KB
testcase_07 AC 40 ms
61,412 KB
testcase_08 AC 39 ms
60,844 KB
testcase_09 AC 40 ms
60,928 KB
testcase_10 AC 41 ms
60,996 KB
testcase_11 AC 40 ms
61,324 KB
testcase_12 AC 102 ms
83,832 KB
testcase_13 AC 97 ms
84,140 KB
testcase_14 AC 98 ms
84,508 KB
testcase_15 AC 97 ms
84,508 KB
testcase_16 AC 93 ms
83,948 KB
testcase_17 AC 96 ms
84,252 KB
testcase_18 AC 100 ms
83,912 KB
testcase_19 AC 98 ms
84,444 KB
testcase_20 AC 97 ms
83,948 KB
testcase_21 AC 97 ms
84,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
s = str(input())
t = str(input())

INF = 10**18
dp = [[INF]*1010 for _ in range(1010)]
dp[0][0] = 0

for i in range(-1, n):
    for j in range(-1, m):
        if i == -1 and j == -1:
            continue
        if i >= 0 and j >= 0:
            if s[i] == t[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)
        if i >= 0:
            dp[i+1][j+1] = min(dp[i+1][j+1], dp[i][j+1]+1)
        if j >= 0:
            dp[i+1][j+1] = min(dp[i+1][j+1], dp[i+1][j]+1)
print(dp[n][m])
0