#include <bits/stdc++.h>
using namespace std;
struct Trie{
struct Trie *child[26];
char letra;
bool endOfWord,longest;
};
struct Trie *createNode(char letra){
struct Trie *nodo = new Trie;
for(int i=0; i<26; i++){
nodo->child[i] = NULL;
}
nodo->endOfWord = false;
nodo->longest = false;
nodo->letra = letra;
return nodo;
}
void insert(struct Trie *root, string key, bool masLarga){
struct Trie *curr = root;
for(int i=0; i<(int)key.size(); i++){
int index = key[i] - 'a';
if(curr->child[index] == NULL){
curr->child[index] = createNode(key[i]);
}
curr = curr->child[index];
if(masLarga) curr->longest = true;
}
curr->endOfWord = true;
}
int counting(struct Trie *root){
struct Trie *curr = root;
int cont = 2;
if(curr->longest){
cont--;
}
for(int i=0; i<26; i++){
if(curr->child[i] != NULL){
struct Trie *sig = curr->child[i];
cont += counting(sig);
}
}
return cont;
}
void printing(struct Trie *root){
struct Trie *curr = root;
//cout << curr->letra << endl;
struct Trie *seguimos = NULL;
for(int i=0; i<26; i++){
if(curr->child[i] != NULL){
//cout << sizeof(*(curr->child[i])) << " " << sizeof(Trie) << endl;
//if(sizeof(*(curr->child[i])) == sizeof(Trie)){
struct Trie *sig = curr->child[i];
if(sig->longest){
seguimos = sig;
}else{
cout << sig->letra << endl;
printing(sig);
}
}
}
if(curr->endOfWord){
cout << 'P' << endl;
}
if(seguimos != NULL){
//cout << sizeof(*seguimos) << " " << sizeof(Trie) << endl;
//if(sizeof(*seguimos) == sizeof(Trie)){
cout << seguimos->letra << endl;
printing(seguimos);
return;
}
if(!curr->longest) cout << '-' << endl;
}
int main(){
ios::sync_with_stdio(false);
cin.tie(0);
int n;
cin >> n;
struct Trie *root = createNode('0');
root->longest = true;
vector<string> v(n);
pair<int,int> longest;
longest.first = 1;
longest.second = 0;
for(int i=0; i<n; i++){
string s;
cin >> s;
v[i] = s;
if((int)s.size() > longest.first){
longest.first = s.size();
longest.second = i;
}
}
for(int i=0; i<n; i++){
if(i == longest.second){
insert(root,v[i],true);
}else insert(root,v[i],false);
}
//cout << sizeof(Trie) << endl;
//cout << sizeof(*root) << endl;
cout << counting(root)+n-1 << endl;
printing(root);
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
212 KB |
Output is correct |
2 |
Correct |
0 ms |
336 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
212 KB |
Output is correct |
2 |
Correct |
1 ms |
324 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
340 KB |
Output is correct |
2 |
Correct |
1 ms |
212 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
340 KB |
Output is correct |
2 |
Correct |
0 ms |
212 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2 ms |
340 KB |
Output is correct |
2 |
Correct |
10 ms |
1108 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
20 ms |
1860 KB |
Output is correct |
2 |
Correct |
27 ms |
2380 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
69 ms |
5972 KB |
Output is correct |
2 |
Correct |
142 ms |
12600 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
168 ms |
14840 KB |
Output is correct |
2 |
Correct |
47 ms |
3796 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
407 ms |
37000 KB |
Output is correct |
2 |
Correct |
925 ms |
84480 KB |
Output is correct |
3 |
Correct |
484 ms |
44528 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
338 ms |
29024 KB |
Output is correct |
2 |
Execution timed out |
1074 ms |
100700 KB |
Time limit exceeded |
3 |
Halted |
0 ms |
0 KB |
- |