# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
722582 | yeyso | 밀림 점프 (APIO21_jumps) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "jumps.h"
#include <bits/stdc++.h>
using namespace std;
#include <vector>
vector<vector<int>> adj;
void init(int n, vector<int> h) {
// adjancency matrix
adj.assign(n, vector<int>());
for(int i = 0; i < n; i ++){
// jumps to the right
for(int j = i + 1; j < n; j ++){
if(h[j] > h[i]){
adj[i].push_back(j);
break;
}
}
// jumps to the left
for(int j = i - 1; j >= 0; j --){
if(h[j] > h[i]){
adj[i].push_back(j);
break;
}
}
}
}
int minimum_jumps(int a, int b, int c, int d) {
// DISTANCE THEN NODE
queue<pair<int, int>> q;
for(int i = a; i <= b; i ++){
q.push({0, i});
}
vector<int> v(n, 0);
int node = 0; int dist = 0;
int res = -1;
while(!q.empty()){
node = q.front().second;
dist = q.front().first;
q.pop();
if(!v[node]){
v[node] = 1;
for(int i = 0; i < adj[node].size(); i ++){
q.push({dist+1, adj[node][i]});
}
if(c <= node and node <= d){
res = dist;
//cout << node << " ";
}
}
}
return res;
}