Watto, the owner of a spare parts store, has recently got an order for the mechanism that can process strings in a certain way. Initially the memory of the mechanism is filled with n strings. Then the mechanism should be able to process queries of the following type: "Given string s, determine if the memory of the mechanism contains string t that consists of the same number of characters as s and differs from s in exactly one position".
Watto has already compiled the mechanism, all that's left is to write a program for it and check it on the data consisting of n initial lines and m queries. He decided to entrust this job to you.
The first line contains two non-negative numbers n and m (0 ≤ n ≤ 3·105, 0 ≤ m ≤ 3·105) — the number of the initial strings and the number of queries, respectively.
Next follow n non-empty strings that are uploaded to the memory of the mechanism.
Next follow m non-empty strings that are the queries to the mechanism.
The total length of lines in the input doesn't exceed 6·105. Each line consists only of letters 'a', 'b', 'c'.
For each query print on a single line "YES" (without the quotes), if the memory of the mechanism contains the required string, otherwise print "NO" (without the quotes).
2 3 aaaaa acacaca aabaa ccacacc caaac
YES NO NO
题意:n个串,m次查询,每次给一个字符串,问在原串中能不能找到一个串,与之长度相同,且只有一个字符不同。
题解:没什么好说的,字典树,强行有个数组不开成全局变量,T哭了,,,,
2015-02-15 11:39:10 | GNU C++ | Accepted | 577 ms | 99188 KB | |||
2015-02-15 11:34:22 | GNU C++ | Time limit exceeded on test 32 | 3000 ms | 101200 KB | |||
2015-02-15 11:33:54 | GNU C++ | Memory limit exceeded on test 1 | 46 ms | 262100 KB | |||
2015-02-15 11:32:29 | GNU C++ | Time limit exceeded on test 32 | 3000 ms | 90700 KB | |||
2015-02-15 11:26:42 | GNU C++ | Time limit exceeded on test 32 | 3000 ms | 89500 KB | |||
2015-02-15 11:17:52 | GNU C++ | Wrong answer on test 4 | 15 ms | 70700 KB | |||
2015-02-15 11:14:26 | GNU C++ | Wrong answer on test 13 | 46 ms | 70800 KB |
1 #include2 #include 3 #include 4 #include 5 #include 6 #include 7 #include 8 #include