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<jumps.h>
#include<bits/stdc++.h>
using namespace std;
#define ll long long int
#define MOD (1000000000+7)
#define MOD1 (998244353)
#define pb push_back
#define all(x) x.begin(), x.end()
#define en cout << '\n'
const int N = 1e6+100, M = 1e5+10, K = 22;
int n, L[N], R[N], up[N][K][2];
vector<int> H;
vector<array<int, 2>> T[N];
void build(int l, int r, int k){
if(l == r){
T[k].pb(array<int, 2>{H[l-1], l-1});
return;
}
int m = l+r>>1;
build(l, m, k<<1);
build(m+1, r, k<<1|1);
merge(all(T[k<<1]), all(T[k<<1|1]), back_inserter(T[k]));
}
array<int, 2> get(int l, int r, int ql, int qr, int k, int val){
if(ql > r || l > qr) return {-1, -1};
if(ql <= l && r <= qr){
int pos = lower_bound(all(T[k]), array<int, 2>{val, -1}) - T[k].begin();
--pos;
if(pos >= 0)
return T[k][pos];
return {-1, -1};
}
int m = l+r>>1;
auto L = get(l, m, ql, qr, k<<1, val);
auto R = get(m+1, r, ql, qr, k<<1|1, val);
if(L[0] < R[0])
return R;
return L;
}
void init(int _n, vector<int> h){
n = _n;
H = h;
H.pb(MOD);
deque<int> q;
L[0] = n;
q.pb(0);
for(int i = 1; i < n; ++i){
while(!q.empty() && H[q.back()] < H[i]) q.pop_back();
if(!q.empty()) L[i] = q.back();
else L[i] = n;
q.pb(i);
}
q.clear();
R[n-1] = n;
q.pb(n-1);
for(int i = n-2; i >= 0; --i){
while(!q.empty() && H[q.back()] < H[i]) q.pop_back();
if(!q.empty()) R[i] = q.back();
else R[i] = n;
q.pb(i);
}
up[n][0][0] = n;
up[n][0][1] = n;
for(int i = 0; i < n; ++i){
if(H[L[i]] > H[R[i]]){
up[i][0][0] = L[i];
up[i][0][1] = R[i];
}else{
up[i][0][1] = L[i];
up[i][0][0] = R[i];
}
}
for(int j = 1; j < K; ++j){
for(int i = 0; i <= n; ++i){
up[i][j][0] = up[up[i][j - 1][0]][j - 1][0];
up[i][j][1] = up[up[i][j - 1][1]][j - 1][1];
}
}
build(1, n, 1);
}
int minimum_jumps(int A, int B, int C, int D){
int v = -1, ans = 0;
auto p = get(1, n, A + 1, B + 1, 1, H[C]);
if(p[0] == -1) return -1;
v = p[1];
for(int j = K - 1; j >= 0; --j){
if(H[up[v][j][0]] <= H[C]){
ans += (1<<j);
v = up[v][j][0];
}
}
for(int j = K - 1; j >= 0; --j){
if(H[up[v][j][1]] <= H[C]){
ans += (1<<j);
v = up[v][j][1];
}
}
if(v == C) return ans;
return -1;
}
Compilation message (stderr)
jumps.cpp: In function 'void build(int, int, int)':
jumps.cpp:22:11: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
22 | int m = l+r>>1;
| ~^~
jumps.cpp: In function 'std::array<int, 2> get(int, int, int, int, int, int)':
jumps.cpp:37:11: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
37 | int m = l+r>>1;
| ~^~
# | 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... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |