# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
105836 | Pro_ktmr | Railway Trip (JOI17_railway_trip) | C++14 | 498 ms | 8940 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"
using namespace std;
#define LL long long
#define MP make_pair
struct SegmentTree{
private:
int N;
vector<int> node;
public:
void init(int n){
N = 1;
while(N < n) N *= 2;
N = N*2-1;
node.clear();
for(int i=0; i<N; i++) node.push_back(0);
}
void update(int a, int x){
int k = a + (N-1)/2;
node[k] = x;
while(k > 0){
k = (k-1) / 2;
node[k] = max(node[2*k+1], node[2*k+2]);
}
}
int findL(int a, int b, int x, int k=0, int l=0, int r=-1){
if(r == -1) r = (N+1)/2;
if(r <= a || b <= l) return INT_MAX;
if(r-l == 1 && node[k] > x) return k - (N-1)/2;
else if(r-l == 1) return INT_MAX;
# | 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... |