| 시간 제한 | 메모리 제한 | 제출 | 정답 | 맞힌 사람 | 정답 비율 |
|---|---|---|---|---|---|
| 서브태스크 참고 (추가 시간 없음) | 1024 MB | 296 | 149 | 114 | 48.305% |
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$.
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$.
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$.
시간 제한: 20 초
시간 제한: 40 초
2 abcd a pppp p
Case #1: 6 Case #2: 0
In Sample Case #1, all the letters in string $S$ should be converted to letter a. We can keep on changing the letters to its preceding letter till we reach the letter a. We do not need to change the first letter as it is already a. The second letter needs 1ドル$ operation to change it to a. The third letter needs 2ドル$ operations to change it to a. The fourth letter needs 3ドル$ operation to change it to a. Hence, we need a total of 6ドル$ operations to change string $S$ such that all letters are changed to a.
In Sample Case #2, string $S$ already contains only the favorite letter from string $F$. Hence, we do not require any more operations.
3 pqrst ou abd abd aaaaaaaaaaaaaaab aceg
Case #1: 9 Case #2: 0 Case #3: 1
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.
Contest > Google > Kick Start > Google Kick Start 2021 > Round H A번