結果

問題 No.225 文字列変更(medium)
ユーザー どん(Don)🇺🇸どん(Don)🇺🇸
提出日時 2023-06-18 13:01:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 106 ms / 5,000 ms
コード長 495 bytes
コンパイル時間 322 ms
コンパイル使用メモリ 82,108 KB
実行使用メモリ 83,368 KB
最終ジャッジ日時 2024-06-26 02:00:20
合計ジャッジ時間 2,941 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
78,536 KB
testcase_01 AC 91 ms
80,648 KB
testcase_02 AC 38 ms
52,188 KB
testcase_03 AC 39 ms
53,948 KB
testcase_04 AC 39 ms
53,288 KB
testcase_05 AC 43 ms
51,812 KB
testcase_06 AC 39 ms
52,328 KB
testcase_07 AC 38 ms
53,288 KB
testcase_08 AC 40 ms
52,072 KB
testcase_09 AC 39 ms
54,088 KB
testcase_10 AC 40 ms
53,816 KB
testcase_11 AC 39 ms
53,180 KB
testcase_12 AC 105 ms
83,040 KB
testcase_13 AC 106 ms
83,368 KB
testcase_14 AC 104 ms
83,124 KB
testcase_15 AC 100 ms
82,624 KB
testcase_16 AC 103 ms
83,208 KB
testcase_17 AC 102 ms
82,888 KB
testcase_18 AC 104 ms
82,480 KB
testcase_19 AC 101 ms
83,008 KB
testcase_20 AC 102 ms
82,356 KB
testcase_21 AC 103 ms
82,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split())
A=input()
B=input()

INF=2**60
dp=[[INF]*(M+1) for i in range(N+1)]
#print(dp)

for i in range(N+1):
    dp[i][0]=i
for j in range(M+1):
    dp[0][j]=j
for i in range(N):
    for j in range(M):
        #置換
        dp[i+1][j+1]=min(dp[i+1][j+1],dp[i][j]+(0 if A[i]==B[j] else 1))
        #削除A
        dp[i+1][j+1]=min(dp[i+1][j+1],dp[i][j+1]+1)
        #削除B
        dp[i+1][j+1]=min(dp[i+1][j+1],dp[i+1][j]+1)
        
        #print(dp)


print(dp[N][M])
0