# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1054371 | Gangsta | 밀림 점프 (APIO21_jumps) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define pb push_back
using namespace std;
const int N = 2e5 + 1;
int dis[N], n1;
bool sub1 = 0;
vector <int> v[N];
priority_queue <pair<int,int>> pq;
void dij(int x){
pq.push({0,x});
dis[x] = 0;
while(!pq.empty()){
int a = pq.top().ss;
pq.pop();
for(auto i: v[a]){
if(dis[a] + i.ss < dis[i.ff]){
dis[i.ff] = dis[a] + i.ss;
pq.push({-dis[i.ff],i.ff});
}
}
}
}
int minimum_jumps(int a, int b, int c, int d){
int mn = 1e9;
for(int i = a; i <= b; i++){
for(int j = 1; j <= n1; j++) dis[j] = 0;
dij(i);
for(int j = c; j <= d; j++) mn = min(mn,dis[j]);
}
return mn;
}
void init(int n, vector <int> h){
n1 = n;
for(int i = 0; i < n; i++){
for(int j = i+1; j < n; j++){
if(h[j] > h[i]){
v[h[i]].pb(h[j]);
break;
}
}
for(int j = i-1; j >= 0; j--){
if(h[j] > h[i]){
v[h[i]].pb(h[j]);
break;
}
}
}
}
// int main(){
// int n, q;
// vector <int> v;
// cin >> n;
// for(int i = 0; i < n; i++){
// int x;
// cin >> x;
// v.pb(x);
// }
// init(n, v);
// cin >> q;
// while(q--){
// int a, b, c, d;
// cin >> a >> b >> c >> d;
// }
// }