結果

問題 No.225 文字列変更(medium)
ユーザー roarisroaris
提出日時 2020-01-18 18:58:12
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 450 bytes
コンパイル時間 515 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 83,272 KB
最終ジャッジ日時 2024-06-28 00:43:49
合計ジャッジ時間 2,841 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
78,592 KB
testcase_01 AC 79 ms
80,512 KB
testcase_02 AC 44 ms
52,224 KB
testcase_03 AC 37 ms
51,712 KB
testcase_04 AC 37 ms
51,712 KB
testcase_05 WA -
testcase_06 AC 37 ms
52,096 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 38 ms
51,968 KB
testcase_10 AC 38 ms
51,712 KB
testcase_11 AC 37 ms
52,096 KB
testcase_12 AC 91 ms
82,432 KB
testcase_13 WA -
testcase_14 AC 87 ms
82,816 KB
testcase_15 AC 92 ms
82,688 KB
testcase_16 AC 87 ms
82,432 KB
testcase_17 AC 90 ms
82,816 KB
testcase_18 AC 91 ms
82,264 KB
testcase_19 AC 87 ms
82,688 KB
testcase_20 WA -
testcase_21 AC 87 ms
82,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
S = input()
T = input()
dp = [[0]*m for _ in range(n)]
dp[0][0] = 1 if S[0]!=T[0] else 0

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

print(dp[n-1][m-1])
0