mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-27 20:36:28 +00:00
P2678 [NOIP2015 提高组] 跳石头
R44577346
This commit is contained in:
parent
4f526ea189
commit
105979fd16
37
Luogu/problem/P2678/P2678.cpp
Normal file
37
Luogu/problem/P2678/P2678.cpp
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
#include <bits/stdc++.h>
|
||||||
|
|
||||||
|
using namespace std;
|
||||||
|
|
||||||
|
int n, m, l, r, mid, ans, a[50005];
|
||||||
|
|
||||||
|
bool check(int x) {
|
||||||
|
int now = 0, cnt = 0, i = 0;
|
||||||
|
for (int i = 1; i <= n; i++) {
|
||||||
|
if (a[i] - a[now] < x) {
|
||||||
|
cnt++;
|
||||||
|
} else {
|
||||||
|
now = i;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return cnt <= m;
|
||||||
|
}
|
||||||
|
|
||||||
|
int main() {
|
||||||
|
cin >> r >> n >> m;
|
||||||
|
for (int i = 1; i <= n; i++) {
|
||||||
|
cin >> a[i];
|
||||||
|
}
|
||||||
|
a[n+1] = r;
|
||||||
|
l = 1;
|
||||||
|
while (l <= r) {
|
||||||
|
mid = l + r >> 1;
|
||||||
|
if (check(mid)) {
|
||||||
|
ans = mid;
|
||||||
|
l = mid + 1;
|
||||||
|
} else {
|
||||||
|
r = mid - 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
cout << ans << endl;
|
||||||
|
return 0;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user