# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
14776 | minsu | Dancing Elephants (IOI11_elephants) | C++14 | 6607 ms | 22272 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>
#include "elephants.h"
using namespace std;
#define MAXE 150051
#define BLOCK 400
int n, bn, l, ele[MAXE], tmp[MAXE], cooltime;
int p[BLOCK][BLOCK*2], sz[BLOCK][BLOCK*2], la[BLOCK][BLOCK*2], pn[BLOCK], pl[BLOCK];
void calc(int b){
for(int i=pn[b]-1; i>=0; i--){
int nxt = lower_bound( p[b]+i+1, p[b]+pn[b], p[b][i] + l + 1 ) - p[b];
if( nxt == pn[b] ) sz[b][i] = 1, la[b][i] = p[b][i] + l + 1;
else sz[b][i] = sz[b][nxt] + 1, la[b][i] = la[b][nxt];
}
}
void mkblock( int X[] ){
for(int i=0; i<bn; i++) pn[i] = 0;
for(int i=0; i<n; i++){
int b = i / BLOCK;
int& bs = pn[b];
p[b][bs++] = X[i];
} bn = ( n-1 ) / BLOCK + 1;
for(int i=0; i<bn; i++)
calc(i), pl[i] = p[i][pn[i]-1];
}
void init(int N, int L, int X[]){
n = N; l = L;
# | 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... |