A10696 | Vladik and chat
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Recently Vladik discovered a new entertainment — coding bots for social networks. He would like to use machine learning in his bots so now he want to prepare some learning data for them.
At first, he need to download $t$ chats. Vladik coded a script which should have downloaded the chats, however, something went wrong. In particular, some of the messages have no information of their sender. It is known that if a person sends several messages in a row, they all are merged into a single message. It means that there could not be two or more messages in a row with the same sender. Moreover, a sender never mention himself in his messages.
Vladik wants to recover senders of all the messages so that each two neighboring messages will have different senders and no sender will mention himself in his messages.
He has no idea of how to do this, and asks you for help. Help Vladik to recover senders in each of the chats!
At first, he need to download $t$ chats. Vladik coded a script which should have downloaded the chats, however, something went wrong. In particular, some of the messages have no information of their sender. It is known that if a person sends several messages in a row, they all are merged into a single message. It means that there could not be two or more messages in a row with the same sender. Moreover, a sender never mention himself in his messages.
Vladik wants to recover senders of all the messages so that each two neighboring messages will have different senders and no sender will mention himself in his messages.
He has no idea of how to do this, and asks you for help. Help Vladik to recover senders in each of the chats!
输入格式
The first line contains single integer $t$ ( $1<=t<=10$ ) — the number of chats. The $t$ chats follow. Each chat is given in the following format.
The first line of each chat description contains single integer $n$ ( $1<=n<=100$ ) — the number of users in the chat.
The next line contains $n$ space-separated distinct usernames. Each username consists of lowercase and uppercase English letters and digits. The usernames can't start with a digit. Two usernames are different even if they differ only with letters' case. The length of username is positive and doesn't exceed $10$ characters.
The next line contains single integer $m$ ( $1<=m<=100$ ) — the number of messages in the chat. The next $m$ line contain the messages in the following formats, one per line:
- <username>:<text> — the format of a message with known sender. The username should appear in the list of usernames of the chat.
- <?>:<text> — the format of a message with unknown sender.
The text of a message can consist of lowercase and uppercase English letter, digits, characters '.' (dot), ',' (comma), '!' (exclamation mark), '?' (question mark) and ' ' (space). The text doesn't contain trailing spaces. The length of the text is positive and doesn't exceed $100$ characters.
We say that a text mention a user if his username appears in the text as a word. In other words, the username appears in a such a position that the two characters before and after its appearance either do not exist or are not English letters or digits. For example, the text "Vasya, masha13 and Kate!" can mention users "Vasya", "masha13", "and" and "Kate", but not "masha".
It is guaranteed that in each chat no known sender mention himself in his messages and there are no two neighboring messages with the same known sender.
The first line of each chat description contains single integer $n$ ( $1<=n<=100$ ) — the number of users in the chat.
The next line contains $n$ space-separated distinct usernames. Each username consists of lowercase and uppercase English letters and digits. The usernames can't start with a digit. Two usernames are different even if they differ only with letters' case. The length of username is positive and doesn't exceed $10$ characters.
The next line contains single integer $m$ ( $1<=m<=100$ ) — the number of messages in the chat. The next $m$ line contain the messages in the following formats, one per line:
- <username>:<text> — the format of a message with known sender. The username should appear in the list of usernames of the chat.
- <?>:<text> — the format of a message with unknown sender.
The text of a message can consist of lowercase and uppercase English letter, digits, characters '.' (dot), ',' (comma), '!' (exclamation mark), '?' (question mark) and ' ' (space). The text doesn't contain trailing spaces. The length of the text is positive and doesn't exceed $100$ characters.
We say that a text mention a user if his username appears in the text as a word. In other words, the username appears in a such a position that the two characters before and after its appearance either do not exist or are not English letters or digits. For example, the text "Vasya, masha13 and Kate!" can mention users "Vasya", "masha13", "and" and "Kate", but not "masha".
It is guaranteed that in each chat no known sender mention himself in his messages and there are no two neighboring messages with the same known sender.
输出格式
Print the information about the $t$ chats in the following format:
If it is not possible to recover senders, print single line "Impossible" for this chat. Otherwise print $m$ messages in the following format:
<username>:<text>
If there are multiple answers, print any of them.
If it is not possible to recover senders, print single line "Impossible" for this chat. Otherwise print $m$ messages in the following format:
<username>:<text>
If there are multiple answers, print any of them.
输入输出样例
输入 #1
1 2 Vladik netman 2 ?: Hello, Vladik! ?: Hi
输出 #1
netman: Hello, Vladik! Vladik: Hi
输入 #2
1 2 netman vladik 3 netman:how are you? ?:wrong message vladik:im fine
输出 #2
Impossible
输入 #3
2 3 netman vladik Fedosik 2 ?: users are netman, vladik, Fedosik vladik: something wrong with this chat 4 netman tigerrrrr banany2001 klinchuh 4 ?: tigerrrrr, banany2001, klinchuh, my favourite team ever, are you ready? klinchuh: yes, coach! ?: yes, netman banany2001: yes of course.
输出 #3
Impossible netman: tigerrrrr, banany2001, klinchuh, my favourite team ever, are you ready? klinchuh: yes, coach! tigerrrrr: yes, netman banany2001: yes of course.
暂无题解
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted