# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
71187 |
2018-08-24T07:57:41 Z |
vanogam |
구간 성분 (KOI15_interval) |
C++14 |
|
1000 ms |
43088 KB |
#include<bits/stdc++.h>
#pragma GCC optimize ("Ofast")
using namespace std;
long long s,d[30],f[1502],g,h,j,k,mod=1000000000736009,mar=1507;
int i,a,l,n,m;
string x,z;
unordered_set<long long> q[2002];
main(){
//ios::sync_with_stdio(0);
d[0]=1;
for(i=1;i<30;i++){
d[i]=(d[i-1]*mar)%mod;
}
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';f[i]=i;}
random_shuffle(f,f+z.size());
for(i=0;i<n;i++){
h=0;
for(a=i;a<n;a++){
h+=d[x[a]];
if(h>mod) h-=mod;
q[a-i].insert(h);
}
}
m=z.size();
for(i=0;i<m;i++){
h=0;//cout<<f[i]<<" ";
//f=min(z.size(),i+x.size());
for(a=f[i];a<m;a++){
//if(a>i+x.size()) break;
h+=d[z[a]];
if(h>mod) h-=mod;
if(l<a-f[i]+1 && q[a-f[i]].find(h)!=q[a-f[i]].end()) l=a-f[i]+1;
}
}
cout<<l;
}
Compilation message
interval.cpp:8:6: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
main(){
^
interval.cpp: In function 'int main()':
interval.cpp:20:14: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for(i=0;i<x.size();i++) x[i]-='a';
~^~~~~~~~~
interval.cpp:21:14: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for(i=0;i<z.size();i++) {z[i]-='a';f[i]=i;}
~^~~~~~~~~
interval.cpp:26:22: warning: array subscript has type 'char' [-Wchar-subscripts]
h+=d[x[a]];
^
interval.cpp:38:22: warning: array subscript has type 'char' [-Wchar-subscripts]
h+=d[z[a]];
^
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
3 ms |
376 KB |
Output is correct |
2 |
Correct |
3 ms |
612 KB |
Output is correct |
3 |
Correct |
2 ms |
612 KB |
Output is correct |
4 |
Correct |
3 ms |
648 KB |
Output is correct |
5 |
Correct |
4 ms |
724 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
64 ms |
3904 KB |
Output is correct |
2 |
Correct |
40 ms |
4708 KB |
Output is correct |
3 |
Correct |
6 ms |
4708 KB |
Output is correct |
4 |
Correct |
5 ms |
4708 KB |
Output is correct |
5 |
Correct |
68 ms |
5448 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
446 ms |
20768 KB |
Output is correct |
2 |
Correct |
482 ms |
21276 KB |
Output is correct |
3 |
Correct |
492 ms |
21276 KB |
Output is correct |
4 |
Correct |
459 ms |
21276 KB |
Output is correct |
5 |
Correct |
514 ms |
21332 KB |
Output is correct |
6 |
Correct |
462 ms |
21332 KB |
Output is correct |
7 |
Correct |
452 ms |
21424 KB |
Output is correct |
8 |
Correct |
402 ms |
21528 KB |
Output is correct |
9 |
Correct |
468 ms |
21528 KB |
Output is correct |
10 |
Correct |
411 ms |
21528 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
112 ms |
21528 KB |
Output is correct |
2 |
Execution timed out |
1067 ms |
43088 KB |
Time limit exceeded |
3 |
Halted |
0 ms |
0 KB |
- |