Delete From the Ends and Reinsert to Target - Google Top Interview Questions
Problem Statement :
You are given two strings s and t that are anagrams of each other. Consider an operation where we remove either the first or the last character in s and insert it back anywhere in the string. Return the minimum number of operations required to convert s into t. Constraints n ≤ 1,000 where n is the length of s Example 1 Input s = "edacb" t = "abcde" Output 3 Explanation The three operations are: We can remove "b" and insert it after "a" to get "edabc" We can remove "e" and insert it after "c" to get "dabce" We can remove "d" and insert it after "c" to get "abcde"
Solution :
Solution in C++ :
int LCS(int i, int j, int n, string& s, string& t, vector<vector<vector<int> > >& dp,
bool canskip) {
if (i >= n || j >= n) {
return 0;
}
int op1 = 0, op2 = 0, op3 = 0;
if (dp[i][j][canskip] != -1) {
return dp[i][j][canskip];
}
if (s[i] == t[j]) {
op1 = 1 + LCS(i + 1, j + 1, n, s, t, dp, 0);
}
if (canskip) {
op2 = LCS(i + 1, j, n, s, t, dp, 1);
}
op3 = LCS(i, j + 1, n, s, t, dp, canskip);
return dp[i][j][canskip] = max(op1, max(op2, op3));
}
int solve(string s, string t) {
int n = s.length();
vector<vector<vector<int> > > dp(n, vector<vector<int> >(n, vector<int>(2, -1)));
return (n - LCS(0, 0, n, s, t, dp, 1));
}
Solution in Python :
class Solution:
def solve(self, s, t):
lhs = 1
rhs = len(s)
while lhs < rhs:
mid = (lhs + rhs + 1) // 2
def is_subsequence(start):
idx = 0
for j in range(len(t)):
if s[idx + start] == t[j]:
idx += 1
if idx == mid:
return True
return False
has_subsequence = any(is_subsequence(i) for i in range(len(s) - mid + 1))
if has_subsequence:
lhs = mid
else:
rhs = mid - 1
return len(s) - lhs
View More Similar Problems
Merge two sorted linked lists
This challenge is part of a tutorial track by MyCodeSchool Given pointers to the heads of two sorted linked lists, merge them into a single, sorted linked list. Either head pointer may be null meaning that the corresponding list is empty. Example headA refers to 1 -> 3 -> 7 -> NULL headB refers to 1 -> 2 -> NULL The new list is 1 -> 1 -> 2 -> 3 -> 7 -> NULL. Function Description C
View Solution →Get Node Value
This challenge is part of a tutorial track by MyCodeSchool Given a pointer to the head of a linked list and a specific position, determine the data value at that position. Count backwards from the tail node. The tail is at postion 0, its parent is at 1 and so on. Example head refers to 3 -> 2 -> 1 -> 0 -> NULL positionFromTail = 2 Each of the data values matches its distance from the t
View Solution →Delete duplicate-value nodes from a sorted linked list
This challenge is part of a tutorial track by MyCodeSchool You are given the pointer to the head node of a sorted linked list, where the data in the nodes is in ascending order. Delete nodes and return a sorted list with each distinct value in the original list. The given head pointer may be null indicating that the list is empty. Example head refers to the first node in the list 1 -> 2 -
View Solution →Cycle Detection
A linked list is said to contain a cycle if any node is visited more than once while traversing the list. Given a pointer to the head of a linked list, determine if it contains a cycle. If it does, return 1. Otherwise, return 0. Example head refers 1 -> 2 -> 3 -> NUL The numbers shown are the node numbers, not their data values. There is no cycle in this list so return 0. head refer
View Solution →Find Merge Point of Two Lists
This challenge is part of a tutorial track by MyCodeSchool Given pointers to the head nodes of 2 linked lists that merge together at some point, find the node where the two lists merge. The merge point is where both lists point to the same node, i.e. they reference the same memory location. It is guaranteed that the two head nodes will be different, and neither will be NULL. If the lists share
View Solution →Inserting a Node Into a Sorted Doubly Linked List
Given a reference to the head of a doubly-linked list and an integer ,data , create a new DoublyLinkedListNode object having data value data and insert it at the proper location to maintain the sort. Example head refers to the list 1 <-> 2 <-> 4 - > NULL. data = 3 Return a reference to the new list: 1 <-> 2 <-> 4 - > NULL , Function Description Complete the sortedInsert function
View Solution →