Cod sursa(job #2265238)
Utilizator | Data | 20 octombrie 2018 21:09:13 | |
---|---|---|---|
Problema | Potrivirea sirurilor | Scor | 36 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva educationala | Marime | 0.41 kb |
#include <bits/stdc++.h>
using namespace std;
ifstream f("strmatch.in");
ofstream g("strmatch.out");
int main()
{
int nr=0, v[100], 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;
}