Round H Google Kick Start 2021 Transform the String Problem Solved in Java


Problem

You are given a string S which denotes a padlock consisting of lower case English letters. You are also given a string F consisting of set of favorite lower case English letters. You are allowed to perform several operations on the padlock. In each operation, you can change one letter of the string to the one following it or preceding it in the alphabetical order. For example: for the letter c, you are allowed to change it to either b or d in an operation. The letters can be considered in a cyclic order, i.e., the preceding letter for letter a would be letter z. Similarly, the following letter for letter z would be letter a.

Your aim is to find the minimum number of operations that are required such that each letter in string S after applying the operations, is present in string F.

Input

The first line of the input gives the number of test cases, T. T test cases follow.
Each test case consists of two lines.
The first line of each test case contains the string S.
The second line of each test case contains the string F.

Output

For each test case, output one line containing Case #x: y, where x is the test case number (starting from 1) and y is the minimum number of operations that are required such that each letter in string S after applying the operations, is one of the characters in string F.

Limits

Memory limit: 1 GB.
1≤T≤100.
1≤ the length of S≤105.
S only consists of lower case English letters.
F only consists of distinct lower case English letters.
The letters in string F are lexicographically sorted.


Test Set 1

Time limit: 20 seconds.
The length of F=1.

Test Set 2

Time limit: 40 seconds.
1≤ the length of F≤26.

Sample

In Sample Case #1, all the letters in string S should be converted to either the letter o or the letter u. For the first and second letters it is optimal to change them to preceding letters till they are changed to letter o. The first letter would take 1 operation to change to letter o. The second letter would take 2 operations to change to letter o. For fourth and fifth letters it is optimal to change them to following letters till they are changed to letter u. The fourth letter would take 2 operations to change to letter u. The fifth letter would take 1 operation to change to letter u. We can change the third letter to either o or u as both of them would require 3 operations. Hence, we need a total of 9 operations to change string S such that all letters are changed to either o or u.

In Sample Case #2, string S already contains only the favorite letters from string F. Hence, we do not require any more operations.

In Sample Case #3, we only need to change the last letter b to either a or c. Thus, we only need 1 operation.

Click the link to see more details about this problem. Google Kick Start Round H 2021 Transform the String.


Java Code




0 Comments