結果

問題 No.225 文字列変更(medium)
ユーザー ckawatakckawatak
提出日時 2019-03-30 18:10:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 109 ms / 5,000 ms
コード長 404 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,700 KB
実行使用メモリ 83,328 KB
最終ジャッジ日時 2024-11-15 21:11:17
合計ジャッジ時間 2,731 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
78,464 KB
testcase_01 AC 89 ms
80,416 KB
testcase_02 AC 39 ms
51,840 KB
testcase_03 AC 38 ms
52,096 KB
testcase_04 AC 39 ms
52,352 KB
testcase_05 AC 41 ms
51,840 KB
testcase_06 AC 40 ms
52,096 KB
testcase_07 AC 40 ms
51,968 KB
testcase_08 AC 40 ms
51,840 KB
testcase_09 AC 39 ms
51,968 KB
testcase_10 AC 40 ms
52,224 KB
testcase_11 AC 40 ms
51,968 KB
testcase_12 AC 106 ms
82,568 KB
testcase_13 AC 104 ms
83,328 KB
testcase_14 AC 109 ms
82,972 KB
testcase_15 AC 108 ms
82,588 KB
testcase_16 AC 106 ms
83,072 KB
testcase_17 AC 108 ms
82,432 KB
testcase_18 AC 105 ms
82,176 KB
testcase_19 AC 100 ms
82,600 KB
testcase_20 AC 102 ms
82,312 KB
testcase_21 AC 103 ms
82,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

dp = []
for _ in range(N+1):
    dp.append([0 for _ in range(M+1)])

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

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

print(dp[N][M])
0