#include <bits/stdc++.h>
using namespace std;
#define int long long
const int mn = 2e5+7;
const int mod1 = 1e9+7;
const int mod2 = 1e9+9;
const int p1 = 269;
const int p2 = 271;
int32_t n,wyn;
string t[mn];
vector<pair<int,int>> hpref[mn];
map<pair<int32_t ,int32_t>, int32_t> 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};
}
for (int i = 0; i < n; i++){
cin>>t[i];
hpref[i].push_back({0, 0});
for (int j = 1; j <= (int)t[i].size(); j++){
hpref[i].push_back({(hpref[i].back().first*p1+t[i][j-1])%mod1, (hpref[i].back().second*p2+t[i][j-1])%mod2});
}
int32_t mx = 0;
for (int j = 1; j <= (int)t[i].size(); j++){
pair<int,int> h = hpref[i][j];
if (h == make_pair((hpref[i][t[i].size()].first-((hpref[i][t[i].size()-j].first*pot[j].first)%mod1)+mod1)%mod1, (hpref[i][t[i].size()].second-((hpref[i][t[i].size()-j].second*pot[j].second)%mod2)+mod2)%mod2)){
mx = max(mx, dp[h]);
}
}
mx++;
wyn = max(wyn, mx);
dp[hpref[i].back()] = mx;
// cout<<hpref[i].size()<<" "<<hpref[i].back().first<<" "<<hpref[i].back().second<<" "<<mx<<"\n";
}
cout<<wyn<<"\n";
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
7 ms |
14428 KB |
Output is correct |
2 |
Correct |
6 ms |
14428 KB |
Output is correct |
3 |
Correct |
7 ms |
14428 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
7 ms |
14428 KB |
Output is correct |
2 |
Correct |
7 ms |
14428 KB |
Output is correct |
3 |
Correct |
9 ms |
15708 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
71 ms |
31568 KB |
Output is correct |
2 |
Correct |
84 ms |
31572 KB |
Output is correct |
3 |
Correct |
80 ms |
33108 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
9 ms |
15964 KB |
Output is correct |
2 |
Correct |
41 ms |
32340 KB |
Output is correct |
3 |
Correct |
51 ms |
33656 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
43 ms |
37972 KB |
Output is correct |
2 |
Correct |
45 ms |
38484 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
44 ms |
37968 KB |
Output is correct |
2 |
Correct |
42 ms |
38108 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
49 ms |
38480 KB |
Output is correct |
2 |
Correct |
55 ms |
38224 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
54 ms |
38992 KB |
Output is correct |
2 |
Correct |
44 ms |
39084 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
110 ms |
65536 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
67 ms |
60756 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |