#include "walk.h"
using namespace std;
typedef vector<int> vi;
const int N = 100000, M = 100000, N_ = N * 2 + M * 10, M_ = N_ + N;
const long long INF = 0x3f3f3f3f3f3f3f3f;
unsigned int X = 12345;
int rand_() {
return (X *= 3) >> 1;
}
int xx[N], yy[N], ii[N], ll[M], rr[M], zz[M], hh[M];
int *aa;
void sort(int *ii, int l, int r) {
while (l < r) {
int i = l, j = l, k = r, i_ = ii[l + rand_() % (r - l)], tmp;
while (j < k)
if (aa[ii[j]] == aa[i_])
j++;
else if (aa[ii[j]] < aa[i_]) {
tmp = ii[i], ii[i] = ii[j], ii[j] = tmp;
i++, j++;
} else {
k--;
tmp = ii[j], ii[j] = ii[k], ii[k] = tmp;
}
sort(ii, l, i);
l = k;
}
}
int ij[M_], ww[M_], m_;
int *eh[N_], eo[N_], n_;
void append(int i, int h) {
int o = eo[i]++;
if (o >= 2 && (o & o - 1) == 0)
eh[i] = (int *) realloc(eh[i], o * 2 * sizeof *eh[i]);
eh[i][o] = h;
}
int newnode() {
eh[n_] = (int *) malloc(2 * sizeof *eh[n_]);
return n_++;
}
void add(int i, int j, int w) {
int h = m_++;
ij[h] = i ^ j, ww[h] = w;
append(i, h), append(j, h);
}
int pp[N], qq[N], top[N], yy1[N];
void push(int i, int y) {
int t = newnode();
add(top[i], t, y - yy1[i]);
top[i] = t, yy1[i] = y;
}
long long dd[N_]; int pq[N_], iq[1 + N_], cnt;
int lt(int i, int j) {
return dd[i] < dd[j];
}
int p2(int p) {
return (p *= 2) > cnt ? 0 : (p < cnt && lt(iq[p + 1], iq[p]) ? p + 1 : p);
}
void pq_up(int i) {
int p, q, j;
for (p = pq[i]; (q = p / 2) && lt(i, j = iq[q]); p = q)
iq[pq[j] = p] = j;
iq[pq[i] = p] = i;
}
void pq_dn(int i) {
int p, q, j;
for (p = pq[i]; (q = p2(p)) && lt(j = iq[q], i); p = q)
iq[pq[j] = p] = j;
iq[pq[i] = p] = i;
}
void pq_add_last(int i) {
iq[pq[i] = ++cnt] = i;
}
int pq_remove_first() {
int i = iq[1], j = iq[cnt--];
if (j != i)
pq[j] = 1, pq_dn(j);
pq[i] = 0;
return i;
}
long long dijkstra(int s, int t) {
memset(dd, 0x3f, n_ * sizeof *dd);
dd[s] = 0, pq_add_last(s);
while (cnt) {
int i = pq_remove_first(), o;
if (i == t)
return dd[i];
for (o = eo[i]; o--; ) {
int h = eh[i][o], j = i ^ ij[h];
long long d = dd[i] + ww[h];
if (dd[j] > d) {
if (dd[j] == INF)
pq_add_last(j);
dd[j] = d, pq_up(j);
}
}
}
return -1;
}
long long min_distance(vi xx_, vi yy_, vi ll_, vi rr_, vi zz_, int s, int t) {
int n = xx_.size(), m = zz_.size(), h, i;
for (i = 0; i < n; i++) {
xx[i] = xx_[i], yy[i] = yy_[i];
ii[i] = i;
}
aa = yy, sort(ii, 0, n);
for (h = 0; h < m; h++) {
ll[h] = ll_[h], rr[h] = rr_[h], zz[h] = zz_[h];
hh[h] = h;
}
aa = zz, sort(hh, 0, m);
for (i = 0; i < n; i++) {
pp[i] = i - 1, qq[i] = i + 1;
top[i] = newnode(), yy1[i] = 0;
}
for (h = 0, i = 0; h < m; h++) {
int h_ = hh[h], i_;
while (i < n && yy[i_ = ii[i]] < zz[h_]) {
if (pp[i_] != -1)
qq[pp[i_]] = qq[i_];
if (qq[i_] != n)
pp[qq[i_]] = pp[i_];
i++;
}
for (i_ = ll[h_]; i_ != rr[h_]; i_ = qq[i_])
push(i_, zz[h_]);
push(i_, zz[h_]);
for (i_ = ll[h_]; i_ != rr[h_]; i_ = qq[i_])
add(top[i_], top[qq[i_]], xx[qq[i_]] - xx[i_]);
}
for (i = 0; i < n; i++)
push(i, yy[i]);
return dijkstra(s, t);
}
Compilation message
walk.cpp: In function 'void append(int, int)':
walk.cpp:45:23: warning: suggest parentheses around '-' in operand of '&' [-Wparentheses]
45 | if (o >= 2 && (o & o - 1) == 0)
| ~~^~~
walk.cpp:46:19: error: 'realloc' was not declared in this scope
46 | eh[i] = (int *) realloc(eh[i], o * 2 * sizeof *eh[i]);
| ^~~~~~~
walk.cpp:2:1: note: 'realloc' is defined in header '<cstdlib>'; did you forget to '#include <cstdlib>'?
1 | #include "walk.h"
+++ |+#include <cstdlib>
2 |
walk.cpp: In function 'int newnode()':
walk.cpp:51:19: error: 'malloc' was not declared in this scope
51 | eh[n_] = (int *) malloc(2 * sizeof *eh[n_]);
| ^~~~~~
walk.cpp:51:19: note: 'malloc' is defined in header '<cstdlib>'; did you forget to '#include <cstdlib>'?
walk.cpp: In function 'long long int dijkstra(int, int)':
walk.cpp:111:2: error: 'memset' was not declared in this scope
111 | memset(dd, 0x3f, n_ * sizeof *dd);
| ^~~~~~
walk.cpp:2:1: note: 'memset' is defined in header '<cstring>'; did you forget to '#include <cstring>'?
1 | #include "walk.h"
+++ |+#include <cstring>
2 |