-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathE_Safety.cpp
101 lines (79 loc) · 2.2 KB
/
E_Safety.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
#include <algorithm>
#include <iostream>
#include <cstring>
#include <climits>
#include <cstdio>
#include <cmath>
#include <unordered_map>
#include <vector>
#include <stack>
#include <deque>
#include <queue>
#include <map>
#include <set>
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
typedef pair<ll, ll> pll;
typedef vector<ll> vll;
typedef vector<pll> vpll;
typedef vector<string> vs;
typedef vector<bool> vb;
typedef map<ll, ll> mll;
typedef set<ll> sll;
typedef queue<ll> qll;
typedef queue<pll> qpll;
#define all(x) x.begin(), x.end()
#define sz(x) (ll) x.size()
#define fr front()
#define bk back()
#define pb push_back
#define pf push_front
#define fi first
#define se second
#define FOR(i, a, b, inc) for (ll i = a; i < b; i += inc)
#define RFOR(i, a, b, inc) for (ll i = b - 1; i >= a; i -= inc)
#define REP(i, a) FOR(i, 0, a, 1)
#define RREP(i, a) RFOR(i, 0, a, 1)
#define each(a, x) for (auto& a: x)
const ll INF = 1e18;
const ll M = 1e9 + 7;
vll a;
ll n, h, ans;
int main() {
ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
cin >> n >> h;
a.resize(n, 0);
REP(i, n) cin >> a[i];
ll lfShift = 0, rgShift = 0;
priority_queue<ll> lf; // Max-heap
priority_queue<ll, vector<ll>, greater<ll> > rg; // Min-heap
lf.push(a[0]);
rg.push(a[0]);
FOR(i, 1, n, 1) {
lfShift -= h;
rgShift += h;
ll lfMainPoint = lf.top() + lfShift;
ll rgMainPoint = rg.top() + rgShift;
ll newPoint = a[i];
if (newPoint < lfMainPoint) {
ans += lfMainPoint - newPoint;
lf.pop();
rg.push(lfMainPoint - rgShift);
lf.push(newPoint - lfShift);
lf.push(newPoint - lfShift);
}
else if (newPoint > rgMainPoint) {
ans += newPoint - rgMainPoint;
rg.pop();
lf.push(rgMainPoint - lfShift);
rg.push(newPoint - rgShift);
rg.push(newPoint - rgShift);
}
else {
lf.push(newPoint - lfShift);
rg.push(newPoint - rgShift);
}
}
cout << ans << '\n';
}