zoukankan      html  css  js  c++  java
  • River Hopscotch POJ

    Every year the cows hold an event featuring a peculiar version of hopscotch that involves carefully jumping from rock to rock in a river. The excitement takes place on a long, straight river with a rock at the start and another rock at the end, L units away from the start (1 ≤ L ≤ 1,000,000,000). Along the river between the starting and ending rocks, N (0 ≤ N ≤ 50,000) more rocks appear, each at an integral distance Di from the start (0 < Di < L).

    To play the game, each cow in turn starts at the starting rock and tries to reach the finish at the ending rock, jumping only from rock to rock. Of course, less agile cows never make it to the final rock, ending up instead in the river.

    Farmer John is proud of his cows and watches this event each year. But as time goes by, he tires of watching the timid cows of the other farmers limp across the short distances between rocks placed too closely together. He plans to remove several rocks in order to increase the shortest distance a cow will have to jump to reach the end. He knows he cannot remove the starting and ending rocks, but he calculates that he has enough resources to remove up to M rocks (0 ≤ MN).

    FJ wants to know exactly how much he can increase the shortest distance *before* he starts removing the rocks. Help Farmer John determine the greatest possible shortest distance a cow has to jump after removing the optimal set of M rocks.

    Input

    Line 1: Three space-separated integers: L, N, and M
    Lines 2.. N+1: Each line contains a single integer indicating how far some rock is away from the starting rock. No two rocks share the same position.

    Output

    Line 1: A single integer that is the maximum of the shortest distance a cow has to jump after removing M rocks

    Sample Input

    25 5 2
    2
    14
    11
    21
    17

    Sample Output

    4

    Hint

    Before removing any rocks, the shortest jump was a jump of 2 from 0 (the start) to 2. After removing the rocks at 2 and 14, the shortest required jump is a jump of 4 (from 17 to 21 or from 21 to 25).
     
    1.题意百度
    2.二分答案后枚举石头
    3.二分的写法~~~,崩溃
     1 #include<iostream>
     2 #include<algorithm>
     3 #include<cstdio>
     4 #include<cstring> 
     5 #include<string>
     6 #define MAX 50005
     7 using namespace std;
     8 
     9 int L,N,M;
    10 int a[50005];
    11 
    12 bool check(int mid){
    13     int temp=a[0],t=0;
    14     for(int i=1;i<=N;i++){
    15         if(a[i]-temp<mid){
    16             t++;
    17             if(t>M) return false;
    18         }
    19         else temp=a[i];
    20     }
    21     return true;
    22 }
    23 
    24 int main()
    25 {   while(~scanf("%d%d%d",&L,&N,&M)){
    26         for(int i=1;i<=N;i++) scanf("%d",&a[i]);
    27         sort(a+1,a+N+1);
    28         a[0]=0,a[N+1]=L;
    29         int l=0,r=L;
    30         int mid;
    31         while(l<=r){
    32             mid=(r+l)/2;
    33             if(check(mid)) l=mid+1;
    34             else r=mid-1;
    35         }
    36         printf("%d
    ",l-1);
    37     }
    38     return 0;
    39 }
  • 相关阅读:
    动态调用WCF服务
    矩阵的坐标变换(转)
    【.NET线程--进阶(一)】--线程方法详解
    [转] Location语法规则
    [转] 深入理解vue 一些底层原理
    [转] lodash常用方法
    [转] Vue 组件间通信六种方式(完整版)
    [转] vuejs组件通信精髓归纳
    [转] 浅谈移动端设备标识码:DeviceID、IMEI、IDFA、UDID和UUID
    [转] vue自定义组件中的v-model简单解释
  • 原文地址:https://www.cnblogs.com/zgglj-com/p/6783963.html
Copyright © 2011-2022 走看看