結果

問題 No.225 文字列変更(medium)
ユーザー e-mone-mon
提出日時 2015-06-17 15:23:48
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,286 ms / 5,000 ms
コード長 457 bytes
コンパイル時間 200 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 45,568 KB
最終ジャッジ日時 2024-06-06 17:46:29
合計ジャッジ時間 15,480 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 483 ms
22,528 KB
testcase_01 AC 802 ms
33,280 KB
testcase_02 AC 27 ms
10,624 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 31 ms
10,496 KB
testcase_05 AC 29 ms
10,624 KB
testcase_06 AC 31 ms
10,624 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 29 ms
10,624 KB
testcase_09 AC 31 ms
10,624 KB
testcase_10 AC 31 ms
10,496 KB
testcase_11 AC 31 ms
10,624 KB
testcase_12 AC 1,176 ms
40,192 KB
testcase_13 AC 1,286 ms
45,568 KB
testcase_14 AC 1,213 ms
43,392 KB
testcase_15 AC 1,158 ms
34,048 KB
testcase_16 AC 1,180 ms
42,752 KB
testcase_17 AC 1,167 ms
35,072 KB
testcase_18 AC 1,113 ms
37,504 KB
testcase_19 AC 1,234 ms
42,752 KB
testcase_20 AC 1,132 ms
38,528 KB
testcase_21 AC 1,177 ms
41,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python
# -*- coding: utf-8 -*-

n,m = map(int,input().split())
S = input()
T = input()

dp = [[0 for i in range(m + 1)] for j in range(n + 1)]
for i in range(n+1):
    dp[i][0] = i
for i in range(m+1):
    dp[0][i] = i

for i in range(1,n+1):
    for j in range(1,m+1):
        ins = dp[i-1][j] + 1
        Del = dp[i][j-1] + 1
        rev = dp[i-1][j-1] + (1  if S[i-1] != T[j-1] else 0)
        dp[i][j] = min(ins,Del,rev)

print(dp[n][m])
0