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>
using namespace std;
typedef long long ll;
const int M = 2000005;
const int N = 100005;
const ll INF = 2000000000000000000LL;
vector<array<int, 2>> adj[M];
vector<array<int, 2>> isAt[N];
int cnode = 0;
///usr/include/c++/10/bits/stl_heap.h|209|error: ‘bool Comparator::operator()(const std::__debug::array<long long int, 2>&, const std::__debug::array<long long int, 2>&) const’ is private within this context|
struct Comparator
{
bool operator() (const array<ll, 2>& ar1, const array<ll, 2>& ar2) const
{
return tie(ar1[1], ar1[0]) > tie(ar2[1], ar2[0]);
}
};
long long min_distance(std::vector<int> x, std::vector<int> h, std::vector<int> l, std::vector<int> r, std::vector<int> y, int s, int g) {
int snode = -1;
int gnode = -1;
for (int i = 0; i < x.size(); i++)
{
isAt[i].push_back({cnode, 0});
if (i == s)
{
snode = cnode;
}
if (i == g)
{
gnode = cnode;
}
cnode++;
}
for (int i = 0; i < l.size(); i++)
{
int prev = -1;
for (int j = l[i]; j <= r[i]; j++)
{
if (h[j] >= y[i])
{
for (auto ar : isAt[j])
{
adj[cnode].push_back({ar[0], abs(ar[1] - y[i])});
adj[ar[0]].push_back({cnode, abs(ar[1] - y[i])});
}
isAt[j].push_back({cnode, y[i]});
if (prev != -1)
{
adj[cnode].push_back({cnode - 1, x[j] - x[prev]});
adj[cnode - 1].push_back({cnode, x[j] - x[prev]});
}
prev = j;
cnode++;
}
}
}
priority_queue<array<ll, 2>, vector<array<ll, 2>>, Comparator> pq;
pq.push({snode, 0});
vector<ll> dist(M, INF);
while (!pq.empty())
{
auto cur = pq.top();
pq.pop();
if (dist[cur[0]] != INF) continue;
dist[cur[0]] = cur[1];
for (auto next : adj[cur[0]])
{
if (dist[next[0]] == INF)
{
pq.push({next[0], next[1] + cur[1]});
}
}
}
if (dist[gnode] == INF) return -1;
return dist[gnode];
}
Compilation message (stderr)
walk.cpp: In function 'long long int min_distance(std::vector<int>, std::vector<int>, std::vector<int>, std::vector<int>, std::vector<int>, int, int)':
walk.cpp:32:23: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
32 | for (int i = 0; i < x.size(); i++)
| ~~^~~~~~~~~~
walk.cpp:46:23: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
46 | for (int i = 0; i < l.size(); i++)
| ~~^~~~~~~~~~
# | 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... |