# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1125104 | SamueleVid | 밀림 점프 (APIO21_jumps) | C++20 | 0 ms | 0 KiB |
#include <bits/stdc++.h>
using namespace std;
#define ll long long
int N;
vector<int> H;
vector<vector<int>> adj;
void init(int N, vector<int> H) {
::N = N;
::H = H;
adj.resize(N);
for (int i = 0; i < N; i ++) {
for (int j = i - 1; j >= 0; j --) {
if (H[j] > H[i]) {
adj[i].push_back(j);
break;
}
}
for (int j = i + 1; j < N; j ++) {
if (H[j] > H[i]) {
adj[i].push_back(j);
break;
}
}
}
// for (int i = 0; i < N; i ++) {
// cout << "i " << i << " : ";
// for (auto x : adj[i]) cout << x << " ";
// cout << '\n';
// }
}
int minimum_jumps(int A, int B, int C, int D) {
vector<int> v(N);
vector<int> d(N, 1e9);
queue<int> q;
for (int i = A; i <= B; i ++) {
q.push(i);
d[i] = 0;
v[i] = 1;
}
while (!q.empty()) {
int u = q.front(); q.pop();
for (auto x : adj[u]) {
if (v[x]) continue;
d[x] = d[u] + 1;
v[x] = 1;
q.push(x);
}
}
int res = 1e9;
for (int i = C; i <= D; i ++) res = min(res, d[i]);
if (res == 1e9) res = -1;
return res;
}
ù