結果

問題 No.225 文字列変更(medium)
ユーザー H20H20
提出日時 2021-06-29 13:50:08
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 431 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 81,996 KB
実行使用メモリ 83,700 KB
最終ジャッジ日時 2024-06-25 17:30:02
合計ジャッジ時間 2,881 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 97 ms
80,896 KB
testcase_02 AC 38 ms
51,840 KB
testcase_03 AC 38 ms
52,224 KB
testcase_04 AC 39 ms
52,352 KB
testcase_05 AC 39 ms
51,840 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 40 ms
52,736 KB
testcase_10 AC 41 ms
52,480 KB
testcase_11 WA -
testcase_12 AC 117 ms
83,072 KB
testcase_13 AC 112 ms
83,700 KB
testcase_14 AC 110 ms
83,240 KB
testcase_15 AC 114 ms
82,744 KB
testcase_16 AC 110 ms
82,944 KB
testcase_17 AC 110 ms
83,072 KB
testcase_18 AC 115 ms
83,024 KB
testcase_19 AC 108 ms
82,944 KB
testcase_20 WA -
testcase_21 AC 107 ms
83,240 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):
    for j in range(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)
        DP[i+1][j]=min(DP[i+1][j],DP[i][j]+1)
        DP[i][j+1]=min(DP[i][j+1],DP[i][j]+1)

print(min(DP[N][M],DP[N-1][M]+1,DP[N][M-1]+1))
0