hiho week 216 register

Ended

Participants:197

Verdict:Accepted
Score:100 / 100
Submitted:2018-08-20 13:11:37

Lang:G++

Edit
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
#include<iostream>
#include<cstdio>
#include<cstring>
#include<string>
#include<cmath>
#include<algorithm>
using namespace std;
const int maxn = 100000+10;
const double eps =0.0000001;
int n,m,k;
double l,r,mid;
int i,j;
int a[maxn];
double ans;
bool check(double x)
{
    int t=k;
    for (int i=1;i<=n;i++)
    {
        double b=(a[i]-a[i-1])/x;
        int a=floor(b);
        if (a>0&&abs(b-a)<eps) a--;
        t-=a;
        if (t<0) return 0;
    }
    return 1;
}
int main()
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX