結果

問題 No.225 文字列変更(medium)
ユーザー tookunn_1213tookunn_1213
提出日時 2017-03-29 21:15:26
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,952 ms / 5,000 ms
コード長 406 bytes
コンパイル時間 107 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 45,952 KB
最終ジャッジ日時 2024-07-06 15:08:48
合計ジャッジ時間 22,067 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 744 ms
22,784 KB
testcase_01 AC 1,288 ms
33,280 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 27 ms
10,752 KB
testcase_04 AC 28 ms
10,752 KB
testcase_05 AC 27 ms
10,752 KB
testcase_06 AC 27 ms
10,752 KB
testcase_07 AC 26 ms
10,880 KB
testcase_08 AC 27 ms
10,752 KB
testcase_09 AC 26 ms
10,752 KB
testcase_10 AC 27 ms
10,752 KB
testcase_11 AC 27 ms
10,752 KB
testcase_12 AC 1,834 ms
40,576 KB
testcase_13 AC 1,952 ms
45,952 KB
testcase_14 AC 1,870 ms
43,648 KB
testcase_15 AC 1,748 ms
34,304 KB
testcase_16 AC 1,849 ms
42,880 KB
testcase_17 AC 1,853 ms
35,200 KB
testcase_18 AC 1,786 ms
37,760 KB
testcase_19 AC 1,827 ms
42,752 KB
testcase_20 AC 1,719 ms
38,656 KB
testcase_21 AC 1,789 ms
42,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
S = input()
T = input()
INF = 10**9+7
dp = [[INF for j in range(M+1)]for i 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):
		dp[i][j] = min(dp[i][j],dp[i-1][j]+1)
		dp[i][j] = min(dp[i][j],dp[i][j-1]+1)
		dp[i][j] = min(dp[i][j],dp[i-1][j-1] + (0 if S[i-1] == T[j-1] else 1))
print(dp[N][M])
0