# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
71156 |
2018-08-24T07:26:54 Z |
vanogam |
구간 성분 (KOI15_interval) |
C++14 |
|
1000 ms |
46192 KB |
#include<bits/stdc++.h>
using namespace std;
long long s,d[30],f,g,h,j,k,n,m,mod=1000000000000009,mar=1507;
int i,a,l;
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;
}
cin>>x>>z;
//cout<<"*"<<x<<" "<<z<<"*";
for(i=0;i<x.size();i++){
h=0;
for(a=i;a<x.size();a++){
h=(h+d[x[a]-'a']);
if(h>mod) h-=mod;
q[a-i].insert(h);
}
}
for(i=0;i<z.size();i++){
h=0;
for(a=i;a<z.size();a++){
h=(h+d[z[a]-'a']);
if(h>mod) 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:7:6: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
main(){
^
interval.cpp: In function 'int main()':
interval.cpp:15:14: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for(i=0;i<x.size();i++){
~^~~~~~~~~
interval.cpp:17:18: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for(a=i;a<x.size();a++){
~^~~~~~~~~
interval.cpp:23:14: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for(i=0;i<z.size();i++){
~^~~~~~~~~
interval.cpp:25:18: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for(a=i;a<z.size();a++){
~^~~~~~~~~
# |
Verdict |
Execution time |
Memory |
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 |
724 KB |
Output is correct |
5 |
Correct |
5 ms |
724 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
50 ms |
3972 KB |
Output is correct |
2 |
Correct |
50 ms |
4868 KB |
Output is correct |
3 |
Correct |
7 ms |
4868 KB |
Output is correct |
4 |
Correct |
5 ms |
4868 KB |
Output is correct |
5 |
Correct |
75 ms |
5580 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
449 ms |
20752 KB |
Output is correct |
2 |
Correct |
442 ms |
21388 KB |
Output is correct |
3 |
Correct |
435 ms |
21388 KB |
Output is correct |
4 |
Correct |
434 ms |
21388 KB |
Output is correct |
5 |
Correct |
488 ms |
21536 KB |
Output is correct |
6 |
Correct |
433 ms |
21536 KB |
Output is correct |
7 |
Correct |
452 ms |
21536 KB |
Output is correct |
8 |
Correct |
472 ms |
21536 KB |
Output is correct |
9 |
Correct |
454 ms |
21612 KB |
Output is correct |
10 |
Correct |
436 ms |
21612 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
129 ms |
21612 KB |
Output is correct |
2 |
Correct |
898 ms |
43060 KB |
Output is correct |
3 |
Correct |
872 ms |
43060 KB |
Output is correct |
4 |
Correct |
158 ms |
43060 KB |
Output is correct |
5 |
Execution timed out |
1080 ms |
46192 KB |
Time limit exceeded |