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 ss and tt . The hacker wants to change the string ss at such way, that it can be found in tt as a substring. All the changes should be the following: Leha chooses one position in the string ss 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 ss ="ab?b" as a result, it will appear in tt ="aabrbb" as a substring.

Guaranteed that the length of the string ss doesn't exceed the length of the string tt . Help the hacker to replace in ss as few symbols as possible so that the result of the replacements can be found in tt as a substring. The symbol "?" should be considered equal to any other symbol.

输入格式

The first line contains two integers nn and mm ( 1<=n<=m<=10001<=n<=m<=1000 ) — the length of the string ss and the length of the string tt correspondingly.

The second line contains nn lowercase English letters — string ss .

The third line contains mm lowercase English letters — string tt .

输出格式

In the first line print single integer kk — the minimal number of symbols that need to be replaced.

In the second line print kk distinct integers denoting the positions of symbols in the string ss 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 
    
首页