A11166 | Petya and Exam
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
It's hard times now. Today Petya needs to score 100 points on Informatics exam. The tasks seem easy to Petya, but he thinks he lacks time to finish them all, so he asks you to help with one..
There is a glob pattern in the statements (a string consisting of lowercase English letters, characters "?" and "\*"). It is known that character "\*" occurs no more than once in the pattern.
Also, $n$ query strings are given, it is required to determine for each of them if the pattern matches it or not.
Everything seemed easy to Petya, but then he discovered that the special pattern characters differ from their usual meaning.
A pattern matches a string if it is possible to replace each character "?" with one good lowercase English letter, and the character "\*" (if there is one) with any, including empty, string of bad lowercase English letters, so that the resulting string is the same as the given string.
The good letters are given to Petya. All the others are bad.
There is a glob pattern in the statements (a string consisting of lowercase English letters, characters "?" and "\*"). It is known that character "\*" occurs no more than once in the pattern.
Also, $n$ query strings are given, it is required to determine for each of them if the pattern matches it or not.
Everything seemed easy to Petya, but then he discovered that the special pattern characters differ from their usual meaning.
A pattern matches a string if it is possible to replace each character "?" with one good lowercase English letter, and the character "\*" (if there is one) with any, including empty, string of bad lowercase English letters, so that the resulting string is the same as the given string.
The good letters are given to Petya. All the others are bad.
输入格式
The first line contains a string with length from $1$ to $26$ consisting of distinct lowercase English letters. These letters are good letters, all the others are bad.
The second line contains the pattern — a string $s$ of lowercase English letters, characters "?" and "\*" ( $1<=|s|<=10^{5}$ ). It is guaranteed that character "\*" occurs in $s$ no more than once.
The third line contains integer $n$ ( $1<=n<=10^{5}$ ) — the number of query strings.
$n$ lines follow, each of them contains single non-empty string consisting of lowercase English letters — a query string.
It is guaranteed that the total length of all query strings is not greater than $10^{5}$ .
The second line contains the pattern — a string $s$ of lowercase English letters, characters "?" and "\*" ( $1<=|s|<=10^{5}$ ). It is guaranteed that character "\*" occurs in $s$ no more than once.
The third line contains integer $n$ ( $1<=n<=10^{5}$ ) — the number of query strings.
$n$ lines follow, each of them contains single non-empty string consisting of lowercase English letters — a query string.
It is guaranteed that the total length of all query strings is not greater than $10^{5}$ .
输出格式
Print $n$ lines: in the $i$ -th of them print "YES" if the pattern matches the $i$ -th query string, and "NO" otherwise.
You can choose the case (lower or upper) for each letter arbitrary.
You can choose the case (lower or upper) for each letter arbitrary.
输入输出样例
输入 #1
ab a?a 2 aaa aab
输出 #1
YES NO
输入 #2
abc a?a?a* 4 abacaba abaca apapa aaaaax
输出 #2
NO YES NO YES
In the first example we can replace "?" with good letters "a" and "b", so we can see that the answer for the first query is "YES", and the answer for the second query is "NO", because we can't match the third letter.
Explanation of the second example.
- The first query: "NO", because character "\*" can be replaced with a string of bad letters only, but the only way to match the query string is to replace it with the string "ba", in which both letters are good.
- The second query: "YES", because characters "?" can be replaced with corresponding good letters, and character "\*" can be replaced with empty string, and the strings will coincide.
- The third query: "NO", because characters "?" can't be replaced with bad letters.
- The fourth query: "YES", because characters "?" can be replaced with good letters "a", and character "\*" can be replaced with a string of bad letters "x".
Explanation of the second example.
- The first query: "NO", because character "\*" can be replaced with a string of bad letters only, but the only way to match the query string is to replace it with the string "ba", in which both letters are good.
- The second query: "YES", because characters "?" can be replaced with corresponding good letters, and character "\*" can be replaced with empty string, and the strings will coincide.
- The third query: "NO", because characters "?" can't be replaced with bad letters.
- The fourth query: "YES", because characters "?" can be replaced with good letters "a", and character "\*" can be replaced with a string of bad letters "x".
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted