結果

問題 No.225 文字列変更(medium)
ユーザー takakintakakin
提出日時 2020-06-01 22:05:59
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 873 ms / 5,000 ms
コード長 380 bytes
コンパイル時間 93 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 42,496 KB
最終ジャッジ日時 2024-05-02 02:12:41
合計ジャッジ時間 10,104 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 376 ms
22,016 KB
testcase_01 AC 598 ms
32,128 KB
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 26 ms
10,624 KB
testcase_04 AC 26 ms
10,624 KB
testcase_05 AC 25 ms
10,624 KB
testcase_06 AC 26 ms
10,624 KB
testcase_07 AC 26 ms
10,752 KB
testcase_08 AC 26 ms
10,624 KB
testcase_09 AC 26 ms
10,752 KB
testcase_10 AC 25 ms
10,624 KB
testcase_11 AC 26 ms
10,752 KB
testcase_12 AC 753 ms
35,840 KB
testcase_13 AC 873 ms
42,496 KB
testcase_14 AC 849 ms
40,576 KB
testcase_15 AC 599 ms
25,856 KB
testcase_16 AC 797 ms
39,936 KB
testcase_17 AC 622 ms
26,112 KB
testcase_18 AC 709 ms
30,848 KB
testcase_19 AC 864 ms
40,320 KB
testcase_20 AC 712 ms
33,024 KB
testcase_21 AC 801 ms
38,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda: sys.stdin.readline().rstrip()
n,m=map(int,input().split())
S=input()
T=input()
DP=[[0]*(m+1) for _ in range(n+1)]
for i in range(n):
  DP[i+1][0]=i+1
for j in range(m):
  DP[0][j+1]=j+1
for i in range(n):
  for j in range(m):
    if S[i]==T[j]:
      DP[i+1][j+1]=DP[i][j]
    else:
      DP[i+1][j+1]=min(DP[i][j+1],DP[i+1][j],DP[i][j])+1
print(DP[n][m])
0