#include<bits/stdc++.h> constint N = 1e5+10; typedeflonglong ll; usingnamespace std; ll n,k,a[N]; ll l,r = 1e8+5; boolf(ll x){ ll ans = 0; for(int i = 1;i<=n;i++){ ans += a[i]/x; } return ans>=k; } voidsolve(){ cin>>n>>k; for(int i = 1;i<=n;i++){ cin>>a[i]; } while(l<r){ ll mid = (l+r+1)>>1; if(f(mid)){ l = mid; } else{ r = mid -1 ; } } cout<<l; return; } intmain(){ std::ios::sync_with_stdio(false); std::cin.tie(0); solve(); }
P2678 跳石头
题目:一年一度的“跳石头”比赛又要开始了!这项比赛将在一条笔直的河道中进行,河道中分布着一些巨大岩石。组委会已经选择好了两块岩石作为比赛起点和终点。在起点和终点之间,有N 块岩石(不含起点和终点的岩石)。在比赛过程中,选手们将从起点出发,每一步跳向相邻的岩石,直至到达终点。为了提高比赛难度,组委会计划移走一些岩石,使得选手们在比赛过程中的最短跳跃距离尽可能长。由于预算限制,组委会至多从起点和终点之间移走 M 块岩石(不能移走起点和终点的岩石)。、
输入格式
第一行包含三个整数L,N,M,分别表示起点到终点的距离,起点和终点之间的岩石数,以及组委会至多移走的岩石数。保证 L≥1 且 N≥M≥0。接下来 N 行,每行一个整数,第i 行的整数Di(0<Di<L), 表示第 i 块岩石与起点的距离。这些岩石按与起点距离从小到大的顺序给出,且不会有两个岩石出现在同一个位置
#include<bits/stdc++.h>
const int N = 5e5+10;
typedef long long ll;
using namespace std;
int a[N];
int d,n,m;
bool check(int x){
int cnt = 0;//当前最短跳跃需要移走的个数
int now = 0;
int i = 0;
while(i<n+1){
i++;
if(a[i]-a[now]<x){//如果跳跃距离小于当前的就需要移
cnt++;
}
else{
now = i;//如果不需要那就跳到当前的石头
}
}
if(cnt>m) return false;//大于就说明小的更多还不够小
else return true;
}
void solve(){
cin>>d>>n>>m;
for(int i = 1;i<=n;i++) cin>>a[i];
a[n+1] = d;//相当于总数是n+1
int l = 0,r = d;
while(l<r){
int mid = (l+r+1)>>1;
if(check(mid)){
l = mid;
}
else{
r = mid-1;
}
}
cout<<l;
}
int main(){
std::ios::sync_with_stdio(false);
std::cin.tie(0);
solve();
}