A11265 | Bathroom terminal
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Smith wakes up at the side of a dirty, disused bathroom, his ankle chained to pipes. Next to him is tape-player with a hand-written message "Play Me". He finds a tape in his own back pocket. After putting the tape in the tape-player, he sees a key hanging from a ceiling, chained to some kind of a machine, which is connected to the terminal next to him. After pressing a Play button a rough voice starts playing from the tape:
"Listen up Smith. As you can see, you are in pretty tough situation and in order to escape, you have to solve a puzzle.
You are given $N$ strings which represent words. Each word is of the maximum length $L$ and consists of characters 'a'-'e'. You are also given $M$ strings which represent patterns. Pattern is a string of length $<=\ L$ and consists of characters 'a'-'e' as well as the maximum 3 characters '?'. Character '?' is an unknown character, meaning it can be equal to any character 'a'-'e', or even an empty character. For each pattern find the number of words that matches with the given pattern. After solving it and typing the result in the terminal, the key will drop from the ceiling and you may escape. Let the game begin."
Help Smith escape.
"Listen up Smith. As you can see, you are in pretty tough situation and in order to escape, you have to solve a puzzle.
You are given $N$ strings which represent words. Each word is of the maximum length $L$ and consists of characters 'a'-'e'. You are also given $M$ strings which represent patterns. Pattern is a string of length $<=\ L$ and consists of characters 'a'-'e' as well as the maximum 3 characters '?'. Character '?' is an unknown character, meaning it can be equal to any character 'a'-'e', or even an empty character. For each pattern find the number of words that matches with the given pattern. After solving it and typing the result in the terminal, the key will drop from the ceiling and you may escape. Let the game begin."
Help Smith escape.
输入格式
The first line of input contains two integers $N$ and $M$ ( $1<=N<=\ 100\ 000$ , $1<=M<=\ 5000$ ), representing the number of words and patterns respectively.
The next $N$ lines represent each word, and after those $N$ lines, following $M$ lines represent each pattern. Each word and each pattern has a maximum length $L$ ( $1<=L<=50$ ). Each pattern has no more that three characters '?'. All other characters in words and patters are lowercase English letters from 'a' to 'e'.
The next $N$ lines represent each word, and after those $N$ lines, following $M$ lines represent each pattern. Each word and each pattern has a maximum length $L$ ( $1<=L<=50$ ). Each pattern has no more that three characters '?'. All other characters in words and patters are lowercase English letters from 'a' to 'e'.
输出格式
Output contains $M$ lines and each line consists of one integer, representing the number of words that match the corresponding pattern.
输入输出样例
输入 #1
3 1 abc aec ac a?c
输出 #1
3
If we switch '?' with 'b', 'e' and with empty character, we get 'abc', 'aec' and 'ac' respectively.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted