A10995 | Crossword solving
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Erelong Leha was bored by calculating of the greatest common divisor of two factorials. Therefore he decided to solve some crosswords. It's well known that it is a very interesting occupation though it can be very difficult from time to time. In the course of solving one of the crosswords, Leha had to solve a simple task. You are able to do it too, aren't you?
Leha has two strings $s$ and $t$ . The hacker wants to change the string $s$ at such way, that it can be found in $t$ as a substring. All the changes should be the following: Leha chooses one position in the string $s$ and replaces the symbol in this position with the question mark "?". The hacker is sure that the question mark in comparison can play the role of an arbitrary symbol. For example, if he gets string $s$ ="ab?b" as a result, it will appear in $t$ ="aabrbb" as a substring.
Guaranteed that the length of the string $s$ doesn't exceed the length of the string $t$ . Help the hacker to replace in $s$ as few symbols as possible so that the result of the replacements can be found in $t$ as a substring. The symbol "?" should be considered equal to any other symbol.
Leha has two strings $s$ and $t$ . The hacker wants to change the string $s$ at such way, that it can be found in $t$ as a substring. All the changes should be the following: Leha chooses one position in the string $s$ and replaces the symbol in this position with the question mark "?". The hacker is sure that the question mark in comparison can play the role of an arbitrary symbol. For example, if he gets string $s$ ="ab?b" as a result, it will appear in $t$ ="aabrbb" as a substring.
Guaranteed that the length of the string $s$ doesn't exceed the length of the string $t$ . Help the hacker to replace in $s$ as few symbols as possible so that the result of the replacements can be found in $t$ as a substring. The symbol "?" should be considered equal to any other symbol.
输入格式
The first line contains two integers $n$ and $m$ ( $1<=n<=m<=1000$ ) — the length of the string $s$ and the length of the string $t$ correspondingly.
The second line contains $n$ lowercase English letters — string $s$ .
The third line contains $m$ lowercase English letters — string $t$ .
The second line contains $n$ lowercase English letters — string $s$ .
The third line contains $m$ lowercase English letters — string $t$ .
输出格式
In the first line print single integer $k$ — the minimal number of symbols that need to be replaced.
In the second line print $k$ distinct integers denoting the positions of symbols in the string $s$ which need to be replaced. Print the positions in any order. If there are several solutions print any of them. The numbering of the positions begins from one.
In the second line print $k$ distinct integers denoting the positions of symbols in the string $s$ which need to be replaced. Print the positions in any order. If there are several solutions print any of them. The numbering of the positions begins from one.
输入输出样例
输入 #1
3 5 abc xaybz
输出 #1
2 2 3
输入 #2
4 10 abcd ebceabazcd
输出 #2
1 2
暂无题解
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted