Delete Characters to Equalize Strings - Google Top Interview Questions


Problem Statement :


Given two lowercase alphabet strings a and b, consider an operation where we delete any character in either string. 
Return the minimum number of operations required such that both strings are equal.

Constraints

0 ≤ n ≤ 1,000 where n is the length of a

0 ≤ m ≤ 1,000 where m is the length of b

Example 1

Input

a = "zyyx"

b = "yfyx"

Output

2

Explanation

We delete the "z" in a and delete "f" in b



Solution :



title-img




                        Solution in C++ :

int solve(string a, string b) {
    int m = a.size();
    int n = b.size();

    int dp[2][n + 1];
    for (int i = 0; i <= m; i++) {
        for (int j = 0; j <= n; j++) {
            if (i == 0)
                dp[i % 2][j] = j;
            else if (j == 0)
                dp[i % 2][j] = i;
            else if (a[i - 1] == b[j - 1])
                dp[i % 2][j] = dp[1 - i % 2][j - 1];
            else
                dp[i % 2][j] = 1 + min(dp[1 - i % 2][j], dp[i % 2][j - 1]);
        }
    }

    return dp[m % 2][n];
}
                    


                        Solution in Java :

import java.util.*;

class Solution {
    public int dp(String a, String b, int i, int j, int[][] memo) {
        if (i == a.length() && j == b.length()) {
            return 0;
        }
        if (i == a.length()) {
            return b.length() - j;
        }
        if (j == b.length()) {
            return a.length() - i;
        }

        if (memo[i][j] != -1) {
            return memo[i][j];
        }
        int ans = Integer.MAX_VALUE;
        if (a.charAt(i) == b.charAt(j)) {
            ans = Math.min(ans, dp(a, b, i + 1, j + 1, memo));
        } else {
            ans = Math.min(ans, 1 + dp(a, b, i + 1, j, memo));
            ans = Math.min(ans, 1 + dp(a, b, i, j + 1, memo));
        }
        return memo[i][j] = ans;
    }
    public int solve(String a, String b) {
        int[][] memo = new int[a.length() + 5][b.length() + 5];
        for (int[] x : memo) {
            Arrays.fill(x, -1);
        }
        return dp(a, b, 0, 0, memo);
    }
}
                    


                        Solution in Python : 
                            
class Solution:
    def solve(self, a, b):

        m = len(a)
        n = len(b)

        @functools.lru_cache(None)
        def dp(i, j):
            if i == m:
                return n - j
            elif j == n:
                return m - i
            else:
                if a[i] == b[j]:
                    return dp(i + 1, j + 1)
                else:
                    return 1 + min(dp(i + 1, j), dp(i, j + 1))

        return dp(0, 0)
                    


View More Similar Problems

Self-Driving Bus

Treeland is a country with n cities and n - 1 roads. There is exactly one path between any two cities. The ruler of Treeland wants to implement a self-driving bus system and asks tree-loving Alex to plan the bus routes. Alex decides that each route must contain a subset of connected cities; a subset of cities is connected if the following two conditions are true: There is a path between ever

View Solution →

Unique Colors

You are given an unrooted tree of n nodes numbered from 1 to n . Each node i has a color, ci. Let d( i , j ) be the number of different colors in the path between node i and node j. For each node i, calculate the value of sum, defined as follows: Your task is to print the value of sumi for each node 1 <= i <= n. Input Format The first line contains a single integer, n, denoti

View Solution →

Fibonacci Numbers Tree

Shashank loves trees and math. He has a rooted tree, T , consisting of N nodes uniquely labeled with integers in the inclusive range [1 , N ]. The node labeled as 1 is the root node of tree , and each node in is associated with some positive integer value (all values are initially ). Let's define Fk as the Kth Fibonacci number. Shashank wants to perform 22 types of operations over his tree, T

View Solution →

Pair Sums

Given an array, we define its value to be the value obtained by following these instructions: Write down all pairs of numbers from this array. Compute the product of each pair. Find the sum of all the products. For example, for a given array, for a given array [7,2 ,-1 ,2 ] Note that ( 7 , 2 ) is listed twice, one for each occurrence of 2. Given an array of integers, find the largest v

View Solution →

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 →