#include <stdio.h>
#include <string.h>
#include <vector>
#define BASE 127
#define MAX_HASH 666013
#define MAX_LEN 2000000
#define BASE1 256
#define MAX_HASH1 1000007
char word[MAX_LEN + 1];
int nw;
char pattern[MAX_LEN + 1];
int np;
int ans[MAX_LEN];
int n;
int addToHash( int valHash, char ch, int b, int mod ) {
valHash = ( valHash * b + ch ) % mod;
return valHash;
}
int removeFromHash( int valHash, char ch, int put, int mod ) {
valHash -= (ch * put) % mod;
if ( valHash < 0 )
valHash += mod;
return valHash;
}
int isEqual( char v1[], char v2[], int n ) {
int i = 0;
while ( i < n && v1[i] == v2[i] )
i ++;
return (i == n);
}
int main() {
FILE *fin, *fout;
int hashVal, hashP, put, hashVal1, hashP1, put1;
fin = fopen( "strmatch.in", "r" );
fgets( pattern, MAX_LEN, fin );
np = strlen( pattern );
pattern[np --] = 0; // scap de '\n'
fgets( word, MAX_LEN, fin );
nw = strlen( word );
word[nw --] = 0; // scap de '\n'
fclose( fin );
hashVal = hashP = hashVal1 = hashP1 = 0;
put = put1 = 1;
for ( int i = 0; i < np - 1; i ++ ) {
//printf( "%d %d\n", codif[pattern[i]], codif[word[i]] );
hashVal = addToHash( hashVal, word[i], BASE, MAX_HASH );
hashP = addToHash( hashP, pattern[i], BASE, MAX_HASH );
put *= BASE;
put %= MAX_HASH;
hashVal1 = addToHash( hashVal1, word[i], BASE1, MAX_HASH1 );
hashP1 = addToHash( hashP1, pattern[i], BASE1, MAX_HASH1 );
put1 *= BASE1;
put1 %= MAX_HASH1;
}
hashP = addToHash( hashP, pattern[np - 1], BASE, MAX_HASH );
//hashVal = addToHash( hashVal, word[np - 1], BASE, MAX_HASH );
hashP1 = addToHash( hashP1, pattern[np - 1], BASE1, MAX_HASH1 );
//hashVal1 = addToHash( hashVal1, word[np - 1], BASE1, MAX_HASH1 );
n = 0;
for ( int i = np; i <= nw; i ++ ) {
hashVal = addToHash( hashVal, word[i - 1], BASE, MAX_HASH );
hashVal1 = addToHash( hashVal1, word[i - 1], BASE1, MAX_HASH1 );
if ( hashP == hashVal && hashP1 == hashVal1 && isEqual( pattern, word + i - np, np ) )
ans[n ++] = i - np;
hashVal = removeFromHash( hashVal, word[i - np], put, MAX_HASH );
hashVal1 = removeFromHash( hashVal1, word[i - np], put1, MAX_HASH1 );
}
fout = fopen( "strmatch.out", "w" );
fprintf( fout, "%d\n", n );
for ( int i = 0; i < n; i ++ )
fprintf( fout, "%d ", ans[i] );
if ( n > 0 )
fprintf( fout, "\n" );
//fprintf( fout, "%d %d\n", hashVal, hashP );
fclose( fout );
return 0;
}