# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1133680 | bachhoangxuan | Type Printer (IOI08_printer) | C++17 | 113 ms | 186308 KiB |
#include <bits/stdc++.h>
using namespace std;
int cnt=1,n;
char letters[30];
vector <char> ans;
string t[1000005];
bool cmp(string a,string b){
if(a.size()==b.size()) return a<b;
else return a.size()<b.size();
}
struct trie{
int c[30];
vector<int> link;
bool send=0;
} node[1000005];
void add_string(string s){
int u=0;
for(char ch:s){
int x=ch-'a';
if(node[u].c[x]==0){
node[u].link.push_back(x);
node[u].c[x]=cnt;
cnt++;
}
u=node[u].c[x];
}
node[u].send=1;
}
void dfs(int u){
for(auto i:node[u].link){
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |