# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
26632 | gs14004 | Rima (COCI17_rima) | C++14 | 833 ms | 221516 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
typedef long long lint;
typedef long double llf;
const int mod = 1e9 + 7;
const int mod1 = 1e9 + 409;
const int mod2 = 1e9 + 433;
typedef pair<int, int> pi;
lint get_hash(string &s, int st, int ed){
lint h1 = 0;
lint h2 = 0;
for(int i=st; i<ed; i++){
h1 = h1 * 257 + s[i];
h2 = h2 * 257 + s[i];
h1 %= mod1;
h2 %= mod2;
}
return h1 * mod2 + h2;
}
int n, vtx[500005], par[500005], cst[500005];
string s[500005];
char buf[3000005];
map<lint, int> hsh[3000005];
vector<int> gph[500005];
int lcp(string &a, string &b){
for(int i=0; i<a.size(); i++){
if(a[i] != b[i]) return i;
}
return a.size();
}
bool vis[500005];
pi dfs(int x, int p){
vis[x] = 1;
pi ret(0, x);
for(auto &i : gph[x]){
if(i != p){
ret = max(ret, dfs(i, x));
}
}
ret.first += cst[x];
return ret;
}
int main(){
scanf("%d",&n);
for(int i=1; i<=n; i++){
scanf("%s", buf);
s[i] = buf;
reverse(s[i].begin(), s[i].end());
}
sort(s+1, s+n+1, [&](const string &a, const string &b){
return make_pair(a.size(), a) < make_pair(b.size(), b);
});
for(int i=1; i<=n; i++){
hsh[s[i].size()][get_hash(s[i], 0, s[i].size())] = i;
}
for(int i=1; i<=n; ){
int p = hsh[s[i].size() - 1][get_hash(s[i], 0, s[i].size() - 1)];
if(p > 0){
gph[vtx[p]].push_back(i);
gph[i].push_back(vtx[p]);
}
int e = i;
while(e <= n && s[e].size() == s[i].size() && lcp(s[i], s[e]) >= s[i].size() - 1) e++;
for(int j=i; j<e; j++){
vtx[j] = i;
cst[j] = e - i;
}
i = e;
}
int ret = 0;
for(int i=1; i<=n; i++){
if(!vis[i]){
ret = max(ret, dfs(dfs(i, -1).second, -1).first);
}
}
cout << ret << endl;
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |