#include using namespace std; template inline bool chmin(T& a, T b) { if (a > b) { a = b; return true; } return false; } const int INF = 1 << 29; int main() { cin.tie(nullptr); ios::sync_with_stdio(false); int N, M; cin >> N >> M; string S, T; cin >> S >> T; vector> dp(N + 1, vector(M + 1, INF)); // dp[i][j] := edit distance between S[:i] and T[:j] dp[0][0] = 0; for (int i = 0; i <= N; ++i) { for (int j = 0; j <= M; ++j) { // modify if (i > 0 && j > 0) { if (S[i - 1] == T[j - 1]) { chmin(dp[i][j], dp[i - 1][j - 1]); } else { chmin(dp[i][j], dp[i - 1][j - 1] + 1); } } // erase if (i > 0) { chmin(dp[i][j], dp[i - 1][j] + 1); } // insert if (j > 0) { chmin(dp[i][j], dp[i][j - 1] + 1); } } } cout << dp[N][M] << endl; }