# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
245232 | VEGAnn | Rima (COCI17_rima) | C++14 | 242 ms | 70648 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define sz(x) ((int)x.size())
#define all(x) x.begin(),x.end()
using namespace std;
const int M = 3000100;
string s;
int ed = 1, nt[M][26], n, f[M][3], ans = 1;
bool mrk[M];
void dfs(int v){
if (mrk[v]){
f[v][0] = f[v][1] = f[v][2] = 1;
for (int ch = 0; ch < 26; ch++){
int u = nt[v][ch];
if (u == 0) continue;
dfs(u);
if (!mrk[u]) continue;
if (mrk[u]) f[v][2]++;
f[v][2] = max(f[v][2], f[v][1] + f[u][1]);
if (mrk[u]) f[v][1]++;
f[v][1] = max(f[v][1], f[v][0] + f[u][1]);
if (mrk[u]) f[v][0]++;
}
for (int tp = 0; tp < 3; tp++)
ans = max(ans, f[v][tp]);
} else {
for (int ch = 0; ch < 26; ch++)
if (nt[v][ch] > 0)
dfs(nt[v][ch]);
}
}
int main(){
ios_base::sync_with_stdio(0); cin.tie(0);
#ifdef _LOCAL
freopen("in.txt","r",stdin);
#endif // _LOCAl
cin >> n;
for (int i = 0; i < n; i++){
cin >> s;
reverse(all(s));
int cur = 1;
for (int j = 0; j < sz(s); j++){
int ch = s[j] - 'a';
if (nt[cur][ch] == 0)
nt[cur][ch] = ++ed;
cur = nt[cur][ch];
}
mrk[cur] = 1;
}
dfs(1);
cout << ans;
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |