zoukankan      html  css  js  c++  java
  • poj 3258 River Hopscotch(二分搜索之最大化最小值)

    Description

    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 ≤ M ≤ N).
    
    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).

    Source

     
     1 #include<iostream>
     2 #include<cstdio>
     3 #include<cstring>
     4 #include<algorithm>
     5 #include<map>
     6 #include<set>
     7 using namespace std;
     8 #define N 50006
     9 int dis[N];
    10 int L,n,m;
    11 bool solve(int min_dis){
    12     int last=0;
    13     int cnt=0;
    14     for(int i=1;i<=n+1;i++){
    15         if(dis[i]-dis[last]<=min_dis) cnt++;
    16         else last=i;
    17     }
    18 
    19     if(cnt>m) return true;
    20     return false;
    21 
    22 }
    23 int main()
    24 {
    25 
    26     while(scanf("%d%d%d",&L,&n,&m)==3){
    27         for(int i=1;i<=n;i++){
    28             scanf("%d",&dis[i]);
    29         }
    30 
    31         if(n==m){
    32             printf("%d
    ",L);
    33             continue;
    34         }
    35 
    36         dis[0]=0;
    37         dis[n+1]=L;
    38         sort(dis+1,dis+n+1);
    39         int low=0;
    40         int high=L;
    41         while(low<high){
    42             int mid=(low+high)>>1;
    43             if(solve(mid)){
    44                 high=mid;
    45             }
    46             else{
    47                 low=mid+1;
    48             }
    49         }
    50         printf("%d
    ",low);
    51     }
    52     return 0;
    53 }
    View Code
  • 相关阅读:
    基于tensorflow的MNIST手写数字识别(二)--入门篇
    怎么自行HTTP的POST包头,需要使用json
    本地数据库(SQL Server)远程连接服务器端服务器
    在 Visual Studio 2010 中创建 ASP.Net Web Service
    VMware加载vmdk文件
    Android典型界面设计(5)——使用SlidingMenu和DrawerLayout分别实现左右侧边栏
    FatSecret Platform API
    Android典型界面设计(4)——使用ActionBar+Fragment实现tab切换
    IOS UITableView删除功能
    Android GUI之View测量
  • 原文地址:https://www.cnblogs.com/UniqueColor/p/4779538.html
Copyright © 2011-2022 走看看