CF533F.Encoding
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Polycarp invented a new way to encode strings. Let's assume that we have string T , consisting of lowercase English letters. Let's choose several pairs of letters of the English alphabet in such a way that each letter occurs in at most one pair. Then let's replace each letter in T with its pair letter if there is a pair letter for it. For example, if you chose pairs (l, r), (p, q) and (a, o), then word "parallelogram" according to the given encoding principle transforms to word "qolorreraglom".
Polycarpus already has two strings, S and T . He suspects that string T was obtained after applying the given encoding method from some substring of string S . Find all positions mi in S ( 1<=mi<=∣S∣−∣T∣+1 ), such that T can be obtained fro substring SmiSmi+1... Smi+∣T∣−1 by applying the described encoding operation by using some set of pairs of English alphabet letters
输入格式
The first line of the input contains two integers, ∣S∣ and ∣T∣ ( 1<=∣T∣<=∣S∣<=2⋅105 ) — the lengths of string S and string T , respectively.
The second and third line of the input contain strings S and T , respectively. Both strings consist only of lowercase English letters.
输出格式
Print number k — the number of suitable positions in string S .
In the next line print k integers m1,m2,...,mk — the numbers of the suitable positions in the increasing order.
输入输出样例
输入#1
11 5 abacabadaba acaba
输出#1
3 1 3 7
输入#2
21 13 paraparallelogramgram qolorreraglom
输出#2
1 5