# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
282489 | GREGOIRELC | Arranging Shoes (IOI19_shoes) | C++14 | 137 ms | 71928 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 "shoes.h"
#include <cmath>
#include <iostream>
#include <queue>
using namespace std;
const int MAX_SHOES = 1e5 + 1;
const int T_MAX = 1 << 18;
const int MID = 1 << 17;
int lstType[MAX_SHOES];
int segTree[T_MAX];
queue<int> enCours[MAX_SHOES];
void addVal(int noeud, int deb, int fin, int curDeb, int curFin)
{
if(curDeb > fin || curFin < deb || curDeb > curFin)
{
return;
}
if(curDeb >= deb && curFin <= fin)
{
segTree[noeud]++;
return;
}
int mid = (curDeb + curFin) / 2;
addVal(noeud * 2, deb, fin, curDeb, mid);
addVal(noeud * 2 + 1, deb, fin, mid + 1, curFin);
}
# | 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... |