# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1042038 | PM1 | Dabbeh (INOI20_dabbeh) | C++17 | 284 ms | 55056 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 mxn=3e5+5;
int n,m,l,r,trie[mxn*2][26],cnt=0,sz[mxn*2],par[mxn*2];
string s[mxn],a;
vector<int>v;
void add(int d,int x,int i){
if(d==s[i].size())
return ;
if(trie[x][s[i][d]-'a']==0){
trie[x][s[i][d]-'a']=++cnt;
par[cnt]=x;
}
sz[trie[x][s[i][d]-'a']]++;
add(d+1,trie[x][s[i][d]-'a'],i);
}
void up(int x){
while(x!=0){
sz[x]++;
x=par[x];
}
}
void get(int x=0){
//cout<<x<<" ";
if(l==r+1 || trie[x][a[l]-'a']==0 || sz[trie[x][a[l]-'a']]==0 ){
v.push_back(x);
if(x==0)
l=1e9;
return;
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |