結果

問題 No.225 文字列変更(medium)
ユーザー H20H20
提出日時 2021-06-29 13:53:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 132 ms / 5,000 ms
コード長 485 bytes
コンパイル時間 299 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 83,712 KB
最終ジャッジ日時 2024-06-25 17:30:10
合計ジャッジ時間 3,160 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
78,720 KB
testcase_01 AC 100 ms
81,056 KB
testcase_02 AC 39 ms
51,840 KB
testcase_03 AC 39 ms
51,712 KB
testcase_04 AC 39 ms
51,712 KB
testcase_05 AC 39 ms
52,224 KB
testcase_06 AC 40 ms
52,224 KB
testcase_07 AC 39 ms
52,096 KB
testcase_08 AC 39 ms
51,840 KB
testcase_09 AC 40 ms
52,096 KB
testcase_10 AC 41 ms
52,096 KB
testcase_11 AC 39 ms
52,352 KB
testcase_12 AC 128 ms
82,688 KB
testcase_13 AC 115 ms
83,584 KB
testcase_14 AC 132 ms
83,456 KB
testcase_15 AC 118 ms
83,072 KB
testcase_16 AC 120 ms
83,200 KB
testcase_17 AC 113 ms
83,712 KB
testcase_18 AC 127 ms
82,816 KB
testcase_19 AC 111 ms
83,328 KB
testcase_20 AC 126 ms
83,200 KB
testcase_21 AC 113 ms
82,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
S = input()
T = input()
DP = [[10**5]*(M+1) for _ in range(N+1)]
DP[0][0]=0
for i in range(N+1):
    for j in range(M+1):
        if i<N and j<M :
            if S[i]==T[j]:
                DP[i+1][j+1]=min(DP[i+1][j+1],DP[i][j])
            else:
                DP[i+1][j+1]=min(DP[i+1][j+1],DP[i][j]+1)
        if i<N:
            DP[i+1][j]=min(DP[i+1][j],DP[i][j]+1)
        if j<M:
            DP[i][j+1]=min(DP[i][j+1],DP[i][j]+1)

print(DP[N][M])
0