이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
//wzorcowka podwojne hasze
#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";
}
| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... | 
| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... | 
| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... | 
| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... | 
| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... | 
| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... | 
| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... | 
| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... | 
| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... | 
| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... |