# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
229621 | Uzumaki_Naturoo | Rima (COCI17_rima) | C++14 | 484 ms | 172464 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.
/// You just can't beat the person who never gives up
/// ICPC next year
//#pragma GCC optimize("Ofast,no-stack-protector,unroll-loops,fast-math,O3")
//#pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,tune=native")
#include<bits/stdc++.h>
using namespace std ;
const int N = 3e6+5 ;
int n ,m ,sz ;
vector<pair<int,int>> to[N] ;
char str[N] ;
bool en[N] ;
void insert_str(){
int cur = 0 ;
for(int i=0;i<m;++i){
int cc = str[i] - 'a' ;
int j = 0 ;
while(j<to[cur].size() && to[cur][j].first!=cc) ++j ;
if(j==to[cur].size()) to[cur].push_back({cc ,++sz}) ;
cur = to[cur][j].second ;
}
en[cur] = 1 ;
}
int mem[N][2][2] ;
int dfs(int cur,bool is,bool ok){
int&ret = mem[cur][is][ok];
if(~ret) return ret;
ret = 0 ;
int here = 0 ;
for(auto i:to[cur]) here += en[i.second] ;
if(!is){
for(auto i:to[cur]){
ret = max(ret ,dfs(i.second,0,0));
if(en[i.second]) ret = max(ret ,1+dfs(i.second,1,0));
}
vector<int> v ;
for(auto i:to[cur]) if(en[i.second]){
v.push_back(dfs(i.second,1,1));
sort(v.rbegin(),v.rend());
if(v.size()>2) v.pop_back();
}
int s = 0 ;
for(int i:v) s += i ;
return ret = max(ret ,here + s) ; ;
}
if(is && !ok){
vector<int> v ;
for(auto i:to[cur]) if(en[i.second]){
v.push_back(dfs(i.second,1,1));
sort(v.rbegin(),v.rend());
if(v.size()>2) v.pop_back();
}
int s = 0 ;
for(int i:v) s += i ;
ret = max(ret ,here + s);
return ret ;
}
if(!here) return ret ;
ret = max(ret,here) ;
for(auto i:to[cur]) if(en[i.second]) ret = max(ret ,here + dfs(i.second,1,1)) ;
return ret ;
}
int main(){
scanf("%d",&n);
for(int i=0;i<n;++i){
scanf("%s",str);
m = strlen(str) ;
reverse(str,str+m);
insert_str();
}
memset(mem,-1,sizeof mem);
printf("%d",dfs(0,0,0));
return 0;
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |