# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
71131 |
2018-08-24T07:14:50 Z |
khohko |
구간 성분 (KOI15_interval) |
C++17 |
|
1000 ms |
56208 KB |
#include <bits/stdc++.h>
#pragma GCC optimize("O3")
using namespace std;
#define ll unsigned long long
#define pb push_back
#define fr first
#define sc second
#define MAX ((ll)(1e12+100))
#define MX ((ll)(1e6+100))
#define ARRS ((ll)(2e6+100))
#define HS ((ll)(1049))
#define MOD ((ll)(1000000861))
#define EP ((double)(1e-9))
#define LG 21
#define mul(a,b) a=((a)*(b))%MOD
using namespace std;
string s,t;
ll pw[200][2000];
unordered_map<ll,ll> mp;
ll ct[50];
int main(){
#ifdef KHOKHO
freopen("in.in","r",stdin);
freopen("out.out","w",stdout);
#endif
cin>>s>>t;
for(int i=0; i<40; i++)
for(int j=0; j<1600; j++)
pw[i][j]=(((ll)rand()<<30ll)+((ll)rand()<<32ll)+((ll)rand()<<16ll)+(ll)rand());
ll pas=0;
for(int i=0; i<s.size(); i++){
ll hs=0;
for(int i=0; i<40; i++)ct[i]=0;
for(int j=i; j<s.size(); j++){
hs^=pw[s[j]-'a'][ct[s[j]-'a']++];
mp[hs]=j-i+1;
}
}
for(int i=0; i<t.size(); i++){
ll hs=0;
for(int i=0; i<40; i++)ct[i]=0;
for(int j=i; j<t.size(); j++){
hs^=pw[t[j]-'a'][ct[t[j]-'a']++];
pas=max(pas,mp[hs]);
}
}
cout<<pas;
}
Compilation message
interval.cpp: In function 'int main()':
interval.cpp:34:16: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for(int i=0; i<s.size(); i++){
~^~~~~~~~~
interval.cpp:37:17: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for(int j=i; j<s.size(); j++){
~^~~~~~~~~
interval.cpp:43:16: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for(int i=0; i<t.size(); i++){
~^~~~~~~~~
interval.cpp:46:17: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for(int j=i; j<t.size(); j++){
~^~~~~~~~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
6 ms |
888 KB |
Output is correct |
2 |
Correct |
8 ms |
1252 KB |
Output is correct |
3 |
Correct |
6 ms |
1252 KB |
Output is correct |
4 |
Correct |
10 ms |
1508 KB |
Output is correct |
5 |
Correct |
7 ms |
1524 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
103 ms |
9012 KB |
Output is correct |
2 |
Correct |
68 ms |
9012 KB |
Output is correct |
3 |
Correct |
18 ms |
9012 KB |
Output is correct |
4 |
Correct |
13 ms |
9012 KB |
Output is correct |
5 |
Correct |
194 ms |
13316 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
869 ms |
50956 KB |
Output is correct |
2 |
Correct |
947 ms |
51016 KB |
Output is correct |
3 |
Correct |
871 ms |
51016 KB |
Output is correct |
4 |
Correct |
905 ms |
51016 KB |
Output is correct |
5 |
Correct |
865 ms |
51016 KB |
Output is correct |
6 |
Correct |
810 ms |
51016 KB |
Output is correct |
7 |
Correct |
916 ms |
51016 KB |
Output is correct |
8 |
Execution timed out |
1016 ms |
51016 KB |
Time limit exceeded |
9 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
357 ms |
51016 KB |
Output is correct |
2 |
Execution timed out |
1055 ms |
56208 KB |
Time limit exceeded |
3 |
Halted |
0 ms |
0 KB |
- |