#P12946. [GCJ Farewell Round #1] Colliding Encoding
[GCJ Farewell Round #1] Colliding Encoding
题目描述
Alan just had his first cryptography class in school today. He decided to apply what he learned and come up with his own cipher. He will map each English letter from A
to Z
to a decimal digit through . He will then try to encode each word to a string consisting of decimal digits by replacing each letter in the word with its mapped digit.
In his excitement, Alan failed to notice that there are letters in the English alphabet and only decimal digits. As a result, there might be collisions, that is, pairs of different words whose encoding is the same.
Given a list of words that Alan wants to encode and the mapping that he uses, can you find out if there would be any collisions between words on the list?
输入格式
The first line of the input gives the number of test cases, T. T test cases follow.
The first line of each test case contains 26 decimal digits (integers between 0 and 9, inclusive) , , …, , representing the mapping that Alan uses. A letter is mapped to digit .
The second line of each test case contains N, the number of words Alan will encode.
The -th of the last N lines contains a string , representing the -th word Alan will encode.
输出格式
For each test case, output one line containing Case #x: y
, where is the test case number (starting from 1) and is either YES
, if there is at least one pair of different words from the list whose encoding coincides, and NO otherwise.
2
0 1 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3
4
ABC
BC
BCD
CDE
0 1 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3
3
CDE
DEF
EFG
Case #1: NO
Case #2: YES
提示
Sample Explanation
In Sample Case #1, the mapping for A is 0, for B is 1, for C is 2, for D is 3, and for E is 3. With this mapping, ABC is encoded as 012, BC is encoded as 12, BCD as 123, and CDE as 233. Since all of these encodings are distinct, there are no collisions.
In Sample Case #2, the mapping for C is 2, for D is 3, for E is 3, for F is 3, and for G is 3. With this mapping, CDE is encoded as 233, DEF as 333, and EFG as 333. Since the encoding for DEF and EFG is the same, there is a collision.
Limits
- .
- , for all .
- the length of , for all .
- Each character of is an uppercase English letter A through Z, for all .
- , for all .
Test Set 1 (4Pts, Visible Verdict)
- .
Test Set 2 (10Pts, Visible Verdict)
- .