-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path72. Edit Distance.cpp
37 lines (29 loc) · 1.01 KB
/
72. Edit Distance.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// -----Approach: Space Optimization ------------------------------------------------------------
/*
Problem Link: https://leetcode.com/problems/edit-distance/
Time: 9 ms (Beats 81.74%), Space: 6.4 MB (Beats 94.13%)
*/
class Solution {
public:
int minDistance(string word1, string word2) {
int n= word1.size();
int m= word2.size();
vector<int> prev(m+1, 0), curr(m+1, 0);
for(int j=0; j<=m; j++) prev[j]= j;
for(int i=1; i<=n; i++){
// implementing this case: for(int i=0; i<=n; i++) dp[i][0]= i;
// in tabulation, putting ith value in every row at 0th col
curr[0]= i;
for(int j=1; j<=m; j++){
if(word1[i-1] == word2[j-1]){
curr[j]= prev[j-1];
}
else{
curr[j]= 1 + min(curr[j-1], min(prev[j], prev[j-1]));
}
}
prev= curr;
}
return prev[m];
}
};