Edit Distance
Problem Statement :
Given two strings word1 and word2, return the minimum number of operations required to convert word1 to word2. You have the following three operations permitted on a word: Insert a character Delete a character Replace a character Example 1: Input: word1 = "horse", word2 = "ros" Output: 3 Explanation: horse -> rorse (replace 'h' with 'r') rorse -> rose (remove 'r') rose -> ros (remove 'e') Example 2: Input: word1 = "intention", word2 = "execution" Output: 5 Explanation: intention -> inention (remove 't') inention -> enention (replace 'i' with 'e') enention -> exention (replace 'n' with 'x') exention -> exection (replace 'n' with 'c') exection -> execution (insert 'u') Constraints: 0 <= word1.length, word2.length <= 500 word1 and word2 consist of lowercase English letters.
Solution :
Solution in C :
#define min(a,b,c) ((a)<(b)?((a)<(c)?(a):(c)):((b)<(c)?(b):(c)))
int minDistance(char * word1, char * word2){
int len1 = strlen(word1);
int len2 = strlen(word2);
if(len1 == 0)
return len2;
if(len2 == 0)
return len1;
int i, j;
int** table = (int**)malloc(len1 * sizeof(int*));
for(i = 0; i < len1; i++){
table[i] = (int*)malloc(len2 * sizeof(int));
}
if(word1[0] == word2[0])
table[0][0] = 0;
else
table[0][0] = 1;
// 第一列
for(i = 1; i < len2; i++){
if(word1[0] == word2[i])
table[0][i] = i;
else
table[0][i] = table[0][i-1] + 1;
}
//第一行
for(i = 1; i < len1; i++){
if(word2[0] == word1[i])
table[i][0] = i;
else
table[i][0] = table[i-1][0] + 1;
}
//處理其他
for(i = 1; i < len1; i++){
for(j = 1; j < len2; j++){
if(word1[i] == word2[j])
table[i][j] = table[i-1][j-1];
else
table[i][j] = 1 + min(table[i-1][j], table[i][j-1], table[i-1][j-1]);
}
}
int ans = table[len1-1][len2-1];
for(i = 0; i < len1; i++){
free(table[i]);
}
free(table);
return ans;
}
Solution in C++ :
class Solution {
public:
int minDistance(string word1, string word2) {
int m=word1.length(),n=word2.length();
int dp[m+1][n+1];
for(int i=0;i<=m;i++)
dp[i][0]=i;
for(int i=0;i<=n;i++)
dp[0][i]=i;
for(int i=1;i<=m;i++)
{
for(int j=1;j<=n;j++)
{
if(word1[i-1]==word2[j-1])
dp[i][j]=dp[i-1][j-1];
else{
dp[i][j] = 1+ min(dp[i][j - 1], min(dp[i - 1][j], dp[i - 1][j - 1]));
}
}
}
return dp[m][n];
}
};
Solution in Java :
class Solution {
public int minDistance(String word1, String word2) {
if (word1 == null || word2 == null) {
throw new IllegalArgumentException("Input strings are null");
}
int insertCost = 1;
int deleteCost = 1;
int replaceCost = 1;
int l1 = word1.length();
int l2 = word2.length();
if (l1 == 0) {
return l2 * insertCost;
}
if (l2 == 0) {
return l1 * deleteCost;
}
// Bellow condition can be used only if all three costs are same.
if (l1 > l2) {
return minDistance(word2, word1);
}
int[] dp = new int[l1 + 1];
// Setting DP array for 0th column of 2D DP array. Here l2 is blank, thus we
// have to delete everything in l1.
for (int i = 1; i <= l1; i++) {
dp[i] = dp[i - 1] + deleteCost;
}
for (int j = 1; j <= l2; j++) {
int prev = dp[0];
dp[0] += insertCost; // l1 is blank, Inserting l2 chars in l1.
char c2 = word2.charAt(j - 1);
for (int i = 1; i <= l1; i++) {
char c1 = word1.charAt(i - 1);
int temp = dp[i];
// Both chars are same, so the distance will also remain same as dp[i-1][j-1]
if (c1 == c2) {
dp[i] = prev;
} else {
// Replace l1[i - 1] by l2[j - 1] ==> dp[i][j] = dp[i - 1][j - 1] + 1
// Delete l1[i-1] from l1[0..i-1] ==> dp[i-1][j] + 1
// Insert l2[j-1] into l1[0..i-1] ==> dp[i][j-1] + 1
dp[i] = Math.min(prev + replaceCost, Math.min(dp[i - 1] + deleteCost, dp[i] + insertCost));
}
prev = temp;
}
}
return dp[l1];
}
}
Solution in Python :
class Solution:
def minDistance(self, s1: str, s2: str) -> int:
@lru_cache(maxsize=None)
def f(i, j):
if i == 0 and j == 0: return 0
if i == 0 or j == 0: return i or j
if s1[i - 1] == s2[j - 1]:
return f(i - 1, j - 1)
return min(1 + f(i, j - 1), 1 + f(i - 1, j), 1 + f(i - 1, j - 1))
m, n = len(s1), len(s2)
return f(m, n)
View More Similar Problems
Lazy White Falcon
White Falcon just solved the data structure problem below using heavy-light decomposition. Can you help her find a new solution that doesn't require implementing any fancy techniques? There are 2 types of query operations that can be performed on a tree: 1 u x: Assign x as the value of node u. 2 u v: Print the sum of the node values in the unique path from node u to node v. Given a tree wi
View Solution →Ticket to Ride
Simon received the board game Ticket to Ride as a birthday present. After playing it with his friends, he decides to come up with a strategy for the game. There are n cities on the map and n - 1 road plans. Each road plan consists of the following: Two cities which can be directly connected by a road. The length of the proposed road. The entire road plan is designed in such a way that if o
View Solution →Heavy Light White Falcon
Our lazy white falcon finally decided to learn heavy-light decomposition. Her teacher gave an assignment for her to practice this new technique. Please help her by solving this problem. You are given a tree with N nodes and each node's value is initially 0. The problem asks you to operate the following two types of queries: "1 u x" assign x to the value of the node . "2 u v" print the maxim
View Solution →Number Game on a Tree
Andy and Lily love playing games with numbers and trees. Today they have a tree consisting of n nodes and n -1 edges. Each edge i has an integer weight, wi. Before the game starts, Andy chooses an unordered pair of distinct nodes, ( u , v ), and uses all the edge weights present on the unique path from node u to node v to construct a list of numbers. For example, in the diagram below, Andy
View Solution →Heavy Light 2 White Falcon
White Falcon was amazed by what she can do with heavy-light decomposition on trees. As a resut, she wants to improve her expertise on heavy-light decomposition. Her teacher gave her an another assignment which requires path updates. As always, White Falcon needs your help with the assignment. You are given a tree with N nodes and each node's value Vi is initially 0. Let's denote the path fr
View Solution →Library Query
A giant library has just been inaugurated this week. It can be modeled as a sequence of N consecutive shelves with each shelf having some number of books. Now, being the geek that you are, you thought of the following two queries which can be performed on these shelves. Change the number of books in one of the shelves. Obtain the number of books on the shelf having the kth rank within the ra
View Solution →