0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-16 20:05:26 +00:00

P3957 [NOIP2017 普及组] 跳房子

https://www.luogu.com.cn/record/85667205
This commit is contained in:
Baoshuo Ren 2022-09-02 07:45:59 +08:00
parent a0a0b5d506
commit ef580a25a7
Signed by: baoshuo
GPG Key ID: 00CB9680AB29F51A
3 changed files with 80 additions and 0 deletions

74
Luogu/P3957/P3957.cpp Normal file
View File

@ -0,0 +1,74 @@
#include <iostream>
#include <algorithm>
#include <deque>
#include <limits>
#include <utility>
using std::cin;
using std::cout;
const char endl = '\n';
const int N = 5e5 + 5;
const long long INF = 0x3f3f3f3f3f3f3f3f;
int n, d;
long long k, f[N], sum;
std::pair<long long, long long> a[N];
bool check(long long l, long long r) {
std::deque<long long> q;
for (int i = 1, j = 0; i <= n; i++) {
f[i] = -INF;
while (j < i && l <= a[i].first - a[j].first) {
if (f[j] != -INF) {
while (!q.empty() && f[q.back()] <= f[j]) q.pop_back();
q.push_back(j);
}
j++;
}
while (!q.empty() && a[i].first - a[q.front()].first > r) {
q.pop_front();
}
if (!q.empty()) {
f[i] = std::max(f[i], f[q.front()] + a[i].second);
}
if (f[i] >= k) return true;
}
return false;
}
int main() {
std::ios::sync_with_stdio(false);
cin.tie(nullptr);
cin >> n >> d >> k;
for (int i = 1; i <= n; i++) {
cin >> a[i].first >> a[i].second;
sum += a[i].second;
}
long long l = 0, r = INF;
while (l < r) {
long long mid = l + r >> 1;
if (check(std::max(d - mid, 0ll), d + mid)) {
r = mid;
} else {
l = mid + 1;
}
}
cout << (r == INF ? -1 : r) << endl;
return 0;
}

BIN
Luogu/P3957/data/P3957_1.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Luogu/P3957/data/P3957_1.out (Stored with Git LFS) Normal file

Binary file not shown.