Java Code for Hamming Distance (TCS Codevita) | PrepInsta

Hamming Distance

TCS CodeVita is a coding competition organized by TCS every year, in search of world’s best coder. This is a global level coding competition in which coders from all around the world compete for the title of World’s Best Coder. Hamming Distance is one of the sample problem of this year TCS CodeVita season 11 competition. 

tcs-bps-hiring

Question -: Vyom just learned about binary numbers. One day his tutor gave him T similar tasks and asked him to find the answer for them. As the number of tasks is more and also the size of input in each task is large, he concluded that manual calculation will be tough, so he decided to write a program for that.
Given T binary strings of varying lengths which consists of only 0s and 1s. He will be given two values A and B which indicates cost of one occurrence of sub strings “01” and “10”. The total cost of the given string will be the sum of the costs of all “01” and “10”. His task is to minimize the cost of given strings in each case, by rearranging it in any order. After he rearrange the string, he has to find the hamming distance between the original string and the rearranged string and print it in each case. In case of invalid input, print “INVALID”. If there are more than one rearrangement which gives least cost, then consider the string which gives minimum hamming distance.
As Vyom is new to binary strings, he is a bit confused. Can you help Vyom to implement!

Note: The sub strings are considered in an overlapping manner i.e., in the string 010, there is one “01” and one “10”.

Constraints
1 <= len(str) <= 10^5
0 <= A,B <= 10^4

Input
First line consists of T the number of test cases.
For each test case there will be two lines, first line consists of the binary string and the second line consists of A and B separated by space.

Output
For each string, print the hamming distance in a new line.
Refer examples section for more clarity.

Time Limit (secs)
1

Examples :

Example 1
Input
2
0100
3 2
000
4 5
Output
2
0
Explanation
Here, cost of original string viz. 0100 is 3, because there is one occurrence of “01”. Now this string can be transformed into a new string viz. 1000 which is having one occurrence of “10”. The cost of transformed string= (number of occurrences of “01”)*3 + (number of occurrences of “10”)*2 = 0*3 + 1*2 = 2 which is the minimum possible and the hamming distance of original and transformed string 2.
The string 000 has the cost of 0 which is minimum, and hence no need to do any transformation. So the hamming distance will be 0.

Example 2
Input
1
01001a10
1 2
Output
INVALID
Explanation
The given string is not binary string.