# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
994104 | vjudge1 | Rima (COCI17_rima) | C++17 | 238 ms | 262144 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;
const int N = 5e5 + 10;
int n, sz;
string S[N];
int dp[N * 20];
bool have[N * 20];
vector<pair<char, int>> g[N * 20];
void add(string s){
int cur = 0;
for (int i = 0; i < s.size(); i ++){
int nxt = 0;
for (auto [c, v] : g[cur]){
if (c == s[i]){
nxt = v;
break;
}
}
if (nxt){
cur = nxt;
}
else{
for (int j = i; j < s.size(); j ++){
sz++;
g[cur].push_back({s[j], sz});
cur = sz;
}
break;
}
}
have[cur] = 1;
}
void print(){
for (int i = 0; i <= sz; i ++){
cout << "current node = " << i << endl;
for (auto [c, v] : g[i]){
cout << "child " << v << " with char " << c << endl;
}
}
}
int main(){
cin >> n;
for (int i = 0; i < n; i ++){
cin >> S[i];
reverse(S[i].begin(), S[i].end());
add(S[i]);
}
int ans = 0;
// print();
// cout << endl;
for (int i = sz; i >= 0; i --){
// cout << "current node = " << i << endl;
int sm = 0;
int mx = 0;
for (auto [c, v] : g[i]){
// cout << "going to " << v << " with char " << c << endl;
if (have[v]){
sm ++;
mx = max(mx, dp[v]);
}
}
if (sm == 0)
dp[i] = 0;
else
dp[i] = sm + mx;
ans = max(ans, dp[i]);
// cout << "Answer = " << dp[i] << endl;
}
cout << ans << endl;
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |