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.

Input

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.

Output

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.

Examples

Input
3 5
abc
xaybz
Output
2
2 3
Input
4 10
abcd
ebceabazcd
Output
1
2
 #include<bits/stdc++.h>
using namespace std; int main() {
int a,b,count;
int ans = ;
int yy[],re[];
char str1[],str2[];
cin>>a>>b;
cin>>str1;
cin>>str2;
queue<int>que;
ans = ;
for(int i = ; i <= b - a; i++) {
count = ;
for(int j = ; j < a; j++) {
if(str1[j] != str2[j+i]) {
yy[count] = j;
count++;
}
}
if(count < ans) {
for(int k = ; k < count; k++) {
re[k] = yy[k];
}
ans = count;
}
}
cout<<ans<<endl;
for(int i = ; i < ans; i++) {
cout<<re[i]+<<" ";
}
cout<<endl;
return ;
}

最新文章

  1. js 倒计时
  2. Xcode 设置 ARC&amp;MRC混用
  3. C# random生成随机数全部一样
  4. 腾讯优测干货精选| 安卓开发新技能Get -常用必备小工具汇总
  5. jquery网页字体变大小
  6. 优步(UBER)发布2016年春节出境游出行报告
  7. linux 下执行.sh文件总是提示permission denied
  8. HDU 2719 The Seven Percent Solution
  9. javascript 正则介绍
  10. Python os与sys模块解析
  11. Redis大幅性能提升之Batch批量读写
  12. ES5规范之Object增强
  13. 高并发环境下全局id生成策略
  14. Problem D: 平面上的点——Point类 (IV)
  15. Dapper基础入门
  16. linux shell获取键盘输入
  17. Docker配置国内加速器加速镜像下载的方法
  18. centos-iso介绍
  19. stm32 r8025
  20. 【Linux】 解决报错: ImportError: libSM.so.6: cannot open shared object file: No such file or directory

热门文章

  1. Windows平台kafka环境的搭建
  2. iOS + Nodejs SSL/Https双向认证
  3. graph driver-device mapper-03thin pool基本操作
  4. Javascript调试命令
  5. 关于OutOfMemoryError的处理
  6. Android碎纸机效果
  7. YTU 2887: D--机器人Bill
  8. YTU 1012: A MST Problem
  9. SPFA 算法详解( 强大图解,不会都难!) (转)
  10. 使用C#开发HTTP服务器系列之访问主页