# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1067535 | jamjanek | Sky Walking (IOI19_walk) | C++17 | 1642 ms | 143488 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 "walk.h"
#include<bits/stdc++.h>
using namespace std;
vector<int>l,r,y,x,h;
const int base = 1<<17;
int drzewo[2*base];
int wiekszeL(int x, int val){
x+=base;
while(drzewo[x]<val && x&(x-1)){
if(x%2==1)x/=2;
else x--;
}
if(drzewo[x]>=val){
while(x<base)
if(drzewo[x*2+1]>=val)
x=x*2+1;
else
x=x*2;
return x-base;
}
else
return -1;
}
int wiekszeR(int x, int val){
while(x<(int)h.size()){
if(h[x]>=val)break;
# | 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... |