#include <bits/stdc++.h>
using namespace std;
#define ff first
#define ss second
#define pii pair<int, int>
#define all(x) x.begin(), x.end()
#define rep(i, a, b) for (int i = (int)a; i <= (int)b; ++i)
#define rep1(i, a, b) for (int i = (int)a; i >= (int)b; --i)
#define mp make_pair
const int N = 2e5 + 5;
int L[N], R[N], h[N];
int n;
void cal_LR() {
rep(i, 1, n) {
rep1(j, i - 1, 1) if (h[j] > h[i]) {
L[i] = j;
break;
}
rep(j, i + 1, n) if (h[j] > h[i]) {
R[i] = j;
break;
}
}
}
int minimum_jumps(int a, int b, int c, int d) {
queue<pii> q;
vector<bool> vst(n + 1);
vst[0] = 1;
rep(i, a, b) q.push({i, 0}), vst[i] = 1;
while (!q.empty()) {
auto [u, w] = q.front();
q.pop();
if (c <= u && u <= d) return w;
int v = L[u];
if (!vst[v]) {
q.push({v, w + 1});
vst[v] = 1;
}
v = R[u];
if (!vst[v]) {
q.push({v, w + 1});
vst[v] = 1;
}
}
return -1;
}
void init(int sz, vector<int> array) {
n = sz;
rep(i, 1, n) h[i] = array[i - 1];
cal_LR();
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
200 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
200 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
200 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
200 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
200 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
200 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
200 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |