結果

問題 No.225 文字列変更(medium)
ユーザー k-kk-k
提出日時 2019-11-15 15:41:43
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,144 ms / 5,000 ms
コード長 432 bytes
コンパイル時間 106 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 44,416 KB
最終ジャッジ日時 2024-09-24 23:04:36
合計ジャッジ時間 13,194 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 418 ms
22,528 KB
testcase_01 AC 733 ms
32,640 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 AC 29 ms
10,880 KB
testcase_05 AC 28 ms
10,752 KB
testcase_06 AC 28 ms
10,624 KB
testcase_07 AC 29 ms
10,880 KB
testcase_08 AC 28 ms
10,624 KB
testcase_09 AC 28 ms
10,752 KB
testcase_10 AC 28 ms
10,752 KB
testcase_11 AC 27 ms
10,752 KB
testcase_12 AC 1,033 ms
38,656 KB
testcase_13 AC 1,144 ms
44,416 KB
testcase_14 AC 1,076 ms
41,984 KB
testcase_15 AC 1,063 ms
33,664 KB
testcase_16 AC 1,019 ms
41,472 KB
testcase_17 AC 1,032 ms
34,688 KB
testcase_18 AC 996 ms
35,968 KB
testcase_19 AC 1,046 ms
41,344 KB
testcase_20 AC 969 ms
36,736 KB
testcase_21 AC 1,023 ms
40,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split(' '))
S = input()
T = input()
# n * mの配列を作成
d = [[None for i in range(m+1)] for j in range(n+1)]

d[0] = list(range(m + 1))

for i in range(1, n + 1):
    d[i][0] = i 
    for j in range(1, m + 1):
        if S[i-1] == T[j-1]:
            d[i][j] = min(d[i][j-1] + 1, d[i-1][j] + 1, d[i-1][j-1])
        else:
            d[i][j] = min(d[i][j-1], d[i-1][j], d[i-1][j-1]) + 1

print(d[n][m])
0