#include<bits/stdc++.h>
#pragma GCC optimize ("O3")
using namespace std;
long long s,d[30],f,g,h,j,k,mod,mar=1507;
int i,a,l,n,m;
string x,z;
unordered_set<long long> q[1502];
main(){
//ios::sync_with_stdio(0);
d[0]=1;//cout<<mod;
for(i=1;i<30;i++){
d[i]=(d[i-1]*mar);
}
//srand(time(0));
char c;
while((c=getchar())!='\n') x+=c;
while((c=getchar())!='\n') z+=c;
//if(x.size()>z.size()) swap(x,z);
//cout<<"*"<<x<<" "<<z<<"*";
n=x.size();
for(i=0;i<x.size();i++) x[i]-='a';
for(i=0;i<z.size();i++) {z[i]-='a';}
//random_shuffle(f,f+z.size());
for(i=0;i<n;i++){
h=0;
for(a=i;a<n;a++){
h+=d[x[a]];
//h^=mod;
q[a-i].insert(h);
}
}
m=z.size();
for(i=0;i<m;i++){
h=0;//cout<<i<<" ";
//f=min(z.size(),i+x.size());
for(a=i;a<m;a++){
//if(a>i+x.size()) break;
h+=d[z[a]];
//h^=mod;
if(l<a-i+1 && q[a-i].find(h)!=q[a-i].end()) l=a-i+1;
}
}
cout<<l;
}
Compilation message
interval.cpp:9:6: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
main(){
^
interval.cpp: In function 'int main()':
interval.cpp:23:14: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for(i=0;i<x.size();i++) x[i]-='a';
~^~~~~~~~~
interval.cpp:24:14: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for(i=0;i<z.size();i++) {z[i]-='a';}
~^~~~~~~~~
interval.cpp:29:22: warning: array subscript has type 'char' [-Wchar-subscripts]
h+=d[x[a]];
^
interval.cpp:41:22: warning: array subscript has type 'char' [-Wchar-subscripts]
h+=d[z[a]];
^
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3 ms |
376 KB |
Output is correct |
2 |
Correct |
3 ms |
484 KB |
Output is correct |
3 |
Correct |
3 ms |
560 KB |
Output is correct |
4 |
Correct |
4 ms |
764 KB |
Output is correct |
5 |
Correct |
4 ms |
764 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
49 ms |
4000 KB |
Output is correct |
2 |
Correct |
62 ms |
4796 KB |
Output is correct |
3 |
Correct |
8 ms |
4796 KB |
Output is correct |
4 |
Correct |
5 ms |
4796 KB |
Output is correct |
5 |
Correct |
82 ms |
5612 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
438 ms |
20688 KB |
Output is correct |
2 |
Correct |
498 ms |
21468 KB |
Output is correct |
3 |
Correct |
405 ms |
21468 KB |
Output is correct |
4 |
Correct |
465 ms |
21468 KB |
Output is correct |
5 |
Correct |
427 ms |
21468 KB |
Output is correct |
6 |
Correct |
508 ms |
21468 KB |
Output is correct |
7 |
Correct |
424 ms |
21468 KB |
Output is correct |
8 |
Correct |
500 ms |
21592 KB |
Output is correct |
9 |
Correct |
462 ms |
21592 KB |
Output is correct |
10 |
Correct |
476 ms |
21592 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
115 ms |
21592 KB |
Output is correct |
2 |
Execution timed out |
1050 ms |
43088 KB |
Time limit exceeded |
3 |
Halted |
0 ms |
0 KB |
- |