#include <bits/stdc++.h>
using namespace std;
#define int long long
const int mn = 2e6+7;
const int mod1 = 1e9+7;
const int mod2 = 1e9+9;
const int p1 = 269;
const int p2 = 271;
int n,wyn;
map<pair<int, int>, int> dp;
pair<int,int> pot[mn];
int32_t main(){
ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
cin>>n;
pot[0] = {1,1};
for (int i = 1; i < mn; i++){
pot[i] = {pot[i-1].first*p1%mod1, pot[i-1].second*p2%mod2};
}
string s;
vector<pair<int,int>> hpref;
for (int i = 0; i < n; i++){
hpref.clear();
cin>>s;
hpref.push_back({0, 0});
for (int j = 1; j <= (int)s.size(); j++){
hpref.push_back({(hpref.back().first*p1+s[j-1])%mod1, (hpref.back().second*p2+s[j-1])%mod2});
}
int mx = 0;
for (int j = 1; j <= (int)s.size(); j++){
pair<int,int> h = hpref[j];
if (h == make_pair((hpref[s.size()].first-((hpref[s.size()-j].first*pot[j].first)%mod1)+mod1)%mod1, (hpref[s.size()].second-((hpref[s.size()-j].second*pot[j].second)%mod2)+mod2)%mod2)){
mx = max(mx, dp[h]);
}
}
mx++;
wyn = max(wyn, mx);
dp[hpref.back()] = mx;
// cout<<hpref.size()<<" "<<hpref.back().first<<" "<<hpref.back().second<<" "<<mx<<"\n";
}
cout<<wyn<<"\n";
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
20 ms |
31580 KB |
Output is correct |
2 |
Correct |
19 ms |
31580 KB |
Output is correct |
3 |
Correct |
19 ms |
31692 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
20 ms |
31572 KB |
Output is correct |
2 |
Correct |
20 ms |
31580 KB |
Output is correct |
3 |
Correct |
22 ms |
31668 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
90 ms |
32852 KB |
Output is correct |
2 |
Correct |
88 ms |
32848 KB |
Output is correct |
3 |
Correct |
86 ms |
32848 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
23 ms |
31724 KB |
Output is correct |
2 |
Correct |
48 ms |
32852 KB |
Output is correct |
3 |
Correct |
54 ms |
32852 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
50 ms |
32600 KB |
Output is correct |
2 |
Correct |
46 ms |
32592 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
43 ms |
32792 KB |
Output is correct |
2 |
Correct |
42 ms |
32592 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
46 ms |
32592 KB |
Output is correct |
2 |
Correct |
42 ms |
32596 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
46 ms |
32852 KB |
Output is correct |
2 |
Correct |
45 ms |
32852 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
53 ms |
32848 KB |
Output is correct |
2 |
Correct |
52 ms |
32848 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
61 ms |
33104 KB |
Output is correct |
2 |
Correct |
58 ms |
33056 KB |
Output is correct |
3 |
Correct |
93 ms |
33480 KB |
Output is correct |