# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
426367 | JeanBombeur | Dancing Elephants (IOI11_elephants) | C++17 | 8833 ms | 8552 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 <cstdio>
#include <iostream>
#include <vector>
#include <algorithm>
#include "elephants.h"
using namespace std;
const int INFINI = (1000 * 1000 * 1000 + 1);
const int MAX_ELEPHANTS = (150 * 1000);
const int LOG = (11);
const int SQRT = (2000);
int Positions[MAX_ELEPHANTS];
vector <int> Elephants[SQRT];
vector <pair <int, int>> Answer[SQRT];
int nbElephants, tailleIntervalle;
void UpdateBucket(int bucket) {
int sz = Elephants[bucket].size();
int droite = sz;
for (int i = droite - 1; i >= 0; i --)
{
while (Elephants[bucket][droite - 1] > Elephants[bucket][i] + tailleIntervalle)
droite --;
if (droite == sz)
Answer[bucket][i] = {1, Elephants[bucket][i] + tailleIntervalle};
else
# | 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... |