zoukankan      html  css  js  c++  java
  • 【POJ 3258】River Hopscotch

    River Hopscotch
    Time Limit: 2000MS   Memory Limit: 65536K
    Total Submissions: 9518   Accepted: 4071

    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 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: LN, 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

     
    二分答案+检查。
    如何检查???
    从起点开始找到一个石块和它的距离大于当前答案,循环+判断即可。
    #include <cstdio>
    #include <cstring>
    #include <algorithm>
    
    using namespace std;
    
    const int MAXN = 50005;
    
    int block[MAXN], l, n, m;
    
    bool check(int maxd)
    {
        if (maxd > l) return false;
        int cnt = 0, st = 0, ed;
        for (; st <= n;)
        {
            ed = st + 1;
            while (block[ed] - block[st] < maxd)
            {
                if (ed == n + 1) return false;
                ++ed;
                ++cnt;
                if (cnt > m) return false;
            }
            st = ed;
        }
        return true;
    }
    
    void binarysearch(int L, int R)
    {
        if (L == R - 1)
        {
            printf("%d
    ", L);
            return;
        }
        int mid = (L + R) >> 1;
        if (check(mid)) binarysearch(mid, R);
        else binarysearch(L, mid);
    }
    
    int main()
    {
        scanf("%d%d%d", &l, &n, &m);
        for (int i = 1; i <= n; ++i) scanf("%d", &block[i]);
        block[0] = 0;
        block[n + 1] = l;
        sort(block + 1, block + n + 1);
        binarysearch(1, 1000000000);
        return 0;
    }
  • 相关阅读:
    vue系列---identify(生成图片验证码)插件
    vue中的锚链接跳转问题
    vue中怎样实现 路由拦截器
    Vue生命周期和考点
    Vue如何使用vue-area-linkage实现地址三级联动效果
    JS的Key-Val(键值对)设置Key为动态的方法
    web开发——在网页中引用字体包(.ttf),即嵌入特殊字体
    spring boot 实现多个 interceptor 并指定顺序
    BigDecimal加减乘除计算
    乐观锁解决并发问题
  • 原文地址:https://www.cnblogs.com/albert7xie/p/4886715.html
Copyright © 2011-2022 走看看