結果

問題 No.225 文字列変更(medium)
ユーザー AT274_AT274_
提出日時 2018-08-13 21:28:30
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,153 ms / 5,000 ms
コード長 369 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,800 KB
最終ジャッジ日時 2024-09-24 08:17:50
合計ジャッジ時間 13,875 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 451 ms
22,528 KB
testcase_01 AC 795 ms
32,896 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 29 ms
10,880 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 29 ms
10,752 KB
testcase_09 AC 29 ms
10,880 KB
testcase_10 AC 30 ms
10,752 KB
testcase_11 AC 30 ms
10,752 KB
testcase_12 AC 1,053 ms
40,448 KB
testcase_13 AC 1,153 ms
44,800 KB
testcase_14 AC 1,139 ms
43,520 KB
testcase_15 AC 1,037 ms
34,176 KB
testcase_16 AC 1,099 ms
42,496 KB
testcase_17 AC 1,049 ms
34,304 KB
testcase_18 AC 1,041 ms
37,632 KB
testcase_19 AC 1,131 ms
42,496 KB
testcase_20 AC 1,005 ms
38,272 KB
testcase_21 AC 1,077 ms
41,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
S = input()
T = input()

dp = [[float('inf')] * (N + 1) for i in range(M + 1)]

# 初期化
for i in range(M + 1):
    dp[i][0] = i
for j in range(N + 1):
    dp[0][j] = j

for i in range(1, M + 1):
    for j in range(1, N + 1):
        dp[i][j] = min(dp[i-1][j-1] + (S[j-1] != T[i-1]), dp[i-1][j] + 1, dp[i][j-1] + 1)

print(dp[M][N])
0