# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
15630 | progressive | Crayfish scrivener (IOI12_scrivener) | C++14 | 239 ms | 109580 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.
using namespace std;
static const int MAXN=1010101;
static bool isundo[MAXN];
static int real[MAXN];
static char working[MAXN];
static int length[MAXN];
static int sparse[MAXN][25];
static int turn;
void Init()
{
turn=1;
real[0]=0;
length[0]=0;
for(int i=0;i<25;i++) sparse[0][i]=-1;
}
void TypeLetter(char L)
{
isundo[turn]=false;
working[turn]=L;
length[turn]=length[turn-1]+1;
real[turn]=turn;
sparse[turn][0]=turn-1;
for(int i=1;i<25;i++)
{
int v=sparse[turn][i-1];
if(v==-1) sparse[turn][i]=-1;
else sparse[turn][i]=sparse[v][i-1];
}
turn++;
# | 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... |