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 "walk.h"
#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
using namespace std;
typedef long long ll;
typedef pair<int,int> pi;
typedef pair<ll,ll> pl;
#define F first
#define S second
#define all(x) (x).begin(),(x).end()
#ifdef dremix
    #define p(x) cerr<<#x<<" = "<<x<<endl;
    #define p2(x,y) cerr<<#x<<" , "<<#y<<" = "<<x<<" , "<<y<<endl;
    #define pp(x) cerr<<#x<<" = "<<x.F<<"-"<<x.S<<endl;
    #define pv(x) cerr<<#x<<" = {";for(auto v : x)cerr<<v<<", ";cerr<<"}"<<endl;
    #define ppv(x) cerr<<#x<<" = {";for(auto v : x)cerr<<v.F<<"-"<<v.S<<", ";cerr<<"}"<<endl;
#else
    #define p(x) {}
    #define p2(x,y) {}
	#define pp(x) {}
    #define pv(x) {}
    #define ppv(x) {}
#endif
const int N = 3e5+5;
const int MOD = 1e9+7;
const ll INF = 1e18+5;
struct ano{
	int x,who;
	ll d;
	bool operator<(const ano &x)const{
		return d > x.d;
	}
};
long long min_distance(vector<int> x, vector<int> h, vector<int> l, vector<int> r, vector<int> y, int s, int g) {
	int n = x.size();
	int m = l.size();
	vector<vector<int> > a(n+m+1);
	int i,j;
	vector<vector<pi> > in(n),out(n);
	for(j=0;j<m;j++){
		in[l[j]].push_back({y[j],n+j});
		out[r[j]].push_back({y[j],n+j});
	}
	set<pi> st;
	for(i=0;i<n;i++){
		for(auto &x : in[i])st.insert(x);
		for(auto &x : st){
			if(x.F > h[i])break;
			j = x.S;
			a[i].push_back(j);
			a[j].push_back(i);
		}
		for(auto &x : out[i])st.erase(x);
	}
	if(n > 50)assert(0);
	priority_queue<ano> q;
	
	vector<__gnu_pbds::gp_hash_table<int,ll> > d(n+m+1,__gnu_pbds::gp_hash_table<int,ll>());
	a[s].push_back(n+m);
	a[n+m].push_back(s);
	
	q.push({s,n+m,0});
	y.push_back(0);
	for(i=0;i<n+m;i++){
		for(auto &v : a[i])
			d[i][v] = INF;
	}
	d[s][n+m] = 0;
	d[n+m][s] = -5;
	int cost;
	bool sky;
	while(!q.empty()){
		ano temp = q.top();
		q.pop();
		sky = false;
		if(temp.x >= n)sky = true;
		if(temp.d > d[temp.x][temp.who])continue;
		for(auto &v : a[temp.x]){
			//if(v == temp.who)continue;
			
			if(sky)
				cost = abs(x[temp.who] - x[v]);
			else
				cost = abs(y[temp.who-n] - y[v-n]);
			if(d[v][temp.x] > d[temp.x][temp.who] + cost){
				d[v][temp.x] = d[temp.x][temp.who] + cost;
				q.push({v,temp.x,d[v][temp.x]});
			}
		}
	}
	ll ans = INF;
	for(auto v : a[g]){
		ans = min(ans,d[g][v]+y[v-n]);
	}
	if(ans == INF)ans = -1;
	return ans;
}
| # | 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... |