# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
701250 |
2023-02-20T16:30:50 Z |
tamthegod |
Rima (COCI17_rima) |
C++17 |
|
129 ms |
262144 KB |
// Make the best become better
// No room for laziness
#include<bits/stdc++.h>
#define pb push_back
#define fi first
#define se second
using namespace std;
using ll = long long;
using ld = long double;
using ull = unsigned long long;
mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());
const int maxN = 5e7 + 5;
const ll oo = 1e18;
int n;
string s[maxN];
int f[maxN];
int res = 0;
void ReadInput()
{
cin >> n;
for(int i=1; i<=n; i++)
{
cin >> s[i];
reverse(s[i].begin(), s[i].end());
}
}
struct Trie
{
struct TNode
{
int id;
int val;
int mark;
int child[30];
};
vector<TNode> tree;
void new_node()
{
TNode tmp;
tmp.id = tree.size();
tmp.val = 0;
tmp.mark = 0;
for(int i=0; i<30; i++)
tmp.child[i] = -1;
tree.pb(tmp);
}
void add(string s)
{
int id = 0;
int cnt = 0;
for(char c : s)
{
cnt++;
int w = c - 'a';
if(tree[id].child[w] == -1)
{
new_node();
tree[id].child[w] = tree.size() - 1;
}
id = tree[id].child[w];
}
tree[id].mark++;
}
void dfs(int u)
{
vector<int> vc;
for(int i=0; i<30; i++)
{
if(tree[u].child[i] == -1) continue;
int v = tree[u].child[i];
dfs(v);
vc.pb(f[v]);
f[u] = max(f[u], f[v]);
}
if(vc.empty())
{
f[u] = tree[u].mark;
res = max(res, f[u]);
return;
}
if(tree[u].mark)
{
sort(vc.begin(), vc.end(), greater<int>());
if(vc.size() > 1) res = max(res, vc[0] + vc[1] + tree[u].mark);
f[u] += tree[u].mark;
res = max(res, f[u]);
}
else f[u] = 0;
}
};
void Solve()
{
Trie tree;
tree.new_node();
for(int i=1; i<=n; i++)
tree.add(s[i]);
tree.dfs(0);
cout << res;
}
int32_t main()
{
//freopen("sol.inp", "r", stdin);
// freopen("sol.out", "w", stdout);
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
ReadInput();
Solve();
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
100 ms |
262144 KB |
Execution killed with signal 9 |
2 |
Runtime error |
108 ms |
262144 KB |
Execution killed with signal 9 |
3 |
Runtime error |
100 ms |
262144 KB |
Execution killed with signal 9 |
4 |
Runtime error |
97 ms |
262144 KB |
Execution killed with signal 9 |
5 |
Runtime error |
106 ms |
262144 KB |
Execution killed with signal 9 |
6 |
Runtime error |
129 ms |
262144 KB |
Execution killed with signal 9 |
7 |
Runtime error |
101 ms |
262144 KB |
Execution killed with signal 9 |
8 |
Runtime error |
97 ms |
262144 KB |
Execution killed with signal 9 |
9 |
Runtime error |
102 ms |
262144 KB |
Execution killed with signal 9 |
10 |
Runtime error |
110 ms |
262144 KB |
Execution killed with signal 9 |