CF822B.Crossword solving
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
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.
输入格式
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 .
输出格式
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.
输入输出样例
输入#1
3 5 abc xaybz
输出#1
2 2 3
输入#2
4 10 abcd ebceabazcd
输出#2
1 2