Pagini recente » Cod sursa (job #1705907) | Statistici Robert Tanase (RobertTanase) | Cod sursa (job #695963) | Borderou de evaluare (job #1339821) | Cod sursa (job #2265248)
#include <bits/stdc++.h>
#define NMax 2000005
using namespace std;
ifstream f("strmatch.in");
ofstream g("strmatch.out");
int main()
{
int nr=0, v[NMax], k=0;
int pos=0;
string a, b;
f>>a>>b;
while ((pos = b.find(a, pos)) != string::npos)
{
nr++;
v[k]=pos;
k++;
pos++;
}
g<<nr<<endl;
for(int i=0;i<k;i++)
g<<v[i]<<" ";
return 0;
}