![]() |
VOOZH | about |
Given two binary stringss1 and s2. The task is to choose substring from s1 and s2 say sub1 and sub2 of equal length such that it maximizes the function:
fun(s1, s2) = len(sub1) / (2xor(sub1, sub2))
Examples:
Input: s1= "1101", s2= "1110"
Output: 3
Explanation: Below are the substrings chosen from s1 and s2
Substring chosen from s1 -> "110"
Substring chosen from s2 -> "110"
Therefore, fun(s1, s2) = 3/ (2xor(110, 110)) = 3, which is maximum possible.Input: s1= "1111", s2= "1000"
Output: 1
Approach: In order to maximize the given function large substrings needed to be chosen with minimum XOR. To minimize the denominator, choose substrings in a way such thatXOR of sub1 and sub2 is always 0 so that the denominator term will always be 1 (20). So for that, find the longest common substring from the two strings s1 and s2, and print its length that would be the required answer.
Below is the implementation of above approach:
3
Time Complexity: O(N*M), where N is the size of s1 and M is the size of s2.
Auxiliary Space: O(N*M), where N is the size of s1 and M is the size of s2.
Approach2: Using memoised version of dynamic programming
In order to maximize the given function large substrings needed to be chosen with minimum XOR. To minimize the denominator, choose substrings in a way such that XOR of sub1 and sub2 is always 0 so that the denominator term will always be 1 (20). So for that, find the longest common substring from the two strings s1 and s2, and print its length that would be the required answer.
To find longest common substring we will go with memoisation approach.
Algorithm:
Below is the implementation of above approach:
3
Time Complexity: O(N*M), where N is the size of s1 and M is the size of s2.
Auxiliary Space: O(N*M), where N is the size of s1 and M is the size of s2.