#include "walk.h"
#include <bits/stdc++.h>
using namespace std;
#define forn(i,n) for(int i=0; i<n; ++i)
#define pb push_back
using ll = int64_t;
const ll inf = 4e18;
#define pi pair<ll,ll>
#define f first
#define s second
#define all(x) x.begin(), x.end()
#define rall(x) x.rbegin(),x.rend()
#define int ll
const int sz=1<<30;
struct sgt {
sgt *L, *R; int s;
sgt() {
L=R=NULL; s=inf;
}
void set(int l, int r, int i, int x) {
if (r-l==1) {
s=x; return;
}
int m=(l+r)>>1;
if (i<m) {
if (!L) L=new sgt();
L->set(l,m,i,x);
} else {
if (!R) R=new sgt();
R->set(m,r,i,x);
}
s = min(L?L->s:inf, R?R->s:inf);
}
void set(int i, int x) {
set(0,sz,i,x);
}
int query(int l, int r, int lx, int rx) {
if (rx<=l || r<=lx) return inf;
if (lx<=l && r<=rx) return s;
int m=(l+r)>>1;
int lq=L?L->query(l,m,lx,rx):inf;
int rq=R?R->query(m,r,lx,rx):inf;
return min(lq,rq);
}
int query(int l, int r) {
return query(0,sz,l,r);
}
};
#undef int
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(), m=l.size();
#define int ll
sgt bottom, top;
bottom.set(0,0);
top.set(0,0);
vector<vector<int>> add(n), del(n);
del[0].pb(0);
add[n-1].pb(0);
forn(i,m) {
add[l[i]].pb(y[i]);
del[r[i]].pb(y[i]);
}
forn(i,n) {
vector<pi> toset;
for(auto&y:add[i]) {
int f = bottom.query(0,y+1);
int s = top.query(y,h[i]);
if (min(f,s)==inf) continue;
f+=y; s-=y;
int x=min(f,s);
toset.pb({y,x});
}
for(auto&y:del[i]) {
bottom.set(y,inf);
top.set(y,inf);
}
for(auto&x:toset) {
bottom.set(x.f,x.s-x.f);
top.set(x.f,x.s+x.f);
}
}
if (top.s==inf) return -1;
int f = top.s+x[n-1]-x[0];
return f;
#undef int
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
212 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
212 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
49 ms |
3648 KB |
Output is correct |
2 |
Correct |
387 ms |
94472 KB |
Output is correct |
3 |
Correct |
449 ms |
80664 KB |
Output is correct |
4 |
Correct |
488 ms |
99348 KB |
Output is correct |
5 |
Correct |
460 ms |
100172 KB |
Output is correct |
6 |
Correct |
484 ms |
102348 KB |
Output is correct |
7 |
Correct |
180 ms |
55856 KB |
Output is correct |
8 |
Correct |
335 ms |
94040 KB |
Output is correct |
9 |
Correct |
471 ms |
98364 KB |
Output is correct |
10 |
Correct |
132 ms |
19380 KB |
Output is correct |
11 |
Correct |
10 ms |
3440 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
49 ms |
3648 KB |
Output is correct |
2 |
Correct |
387 ms |
94472 KB |
Output is correct |
3 |
Correct |
449 ms |
80664 KB |
Output is correct |
4 |
Correct |
488 ms |
99348 KB |
Output is correct |
5 |
Correct |
460 ms |
100172 KB |
Output is correct |
6 |
Correct |
484 ms |
102348 KB |
Output is correct |
7 |
Correct |
180 ms |
55856 KB |
Output is correct |
8 |
Correct |
335 ms |
94040 KB |
Output is correct |
9 |
Correct |
471 ms |
98364 KB |
Output is correct |
10 |
Correct |
132 ms |
19380 KB |
Output is correct |
11 |
Correct |
10 ms |
3440 KB |
Output is correct |
12 |
Correct |
417 ms |
88524 KB |
Output is correct |
13 |
Correct |
406 ms |
95820 KB |
Output is correct |
14 |
Correct |
469 ms |
94736 KB |
Output is correct |
15 |
Correct |
249 ms |
45716 KB |
Output is correct |
16 |
Correct |
260 ms |
44988 KB |
Output is correct |
17 |
Correct |
288 ms |
44984 KB |
Output is correct |
18 |
Correct |
248 ms |
45780 KB |
Output is correct |
19 |
Correct |
256 ms |
44916 KB |
Output is correct |
20 |
Correct |
211 ms |
54932 KB |
Output is correct |
21 |
Correct |
22 ms |
7804 KB |
Output is correct |
22 |
Correct |
220 ms |
74888 KB |
Output is correct |
23 |
Correct |
240 ms |
76116 KB |
Output is correct |
24 |
Correct |
228 ms |
81976 KB |
Output is correct |
25 |
Correct |
247 ms |
86036 KB |
Output is correct |
26 |
Correct |
217 ms |
94156 KB |
Output is correct |
27 |
Correct |
464 ms |
95532 KB |
Output is correct |
28 |
Correct |
372 ms |
99404 KB |
Output is correct |
29 |
Correct |
474 ms |
93924 KB |
Output is correct |
30 |
Correct |
187 ms |
55868 KB |
Output is correct |
31 |
Correct |
488 ms |
98448 KB |
Output is correct |
32 |
Incorrect |
113 ms |
15748 KB |
Output isn't correct |
33 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
212 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |