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;
    }
  • 相关阅读:
    创业失败,是应该坚持还是给别人打工?
    在三四线小城市投资3至8万,做什么小生意好?
    在小县城做什么生意好?
    在农村创业有哪些优势和机会?
    听说做餐饮的都在赔钱,为什么新店却越开越多?
    现在做什么行业好一点?
    手头有五万左右,想做个小生意,有什么值得推荐的?
    可以给我个创业的建议吗?
    如果你现在月工资纯入7千左右,30多岁有家庭但前途迷茫,你会独自创业打拼吗?
    JeeSite 4.0 简化业务逻辑层开发
  • 原文地址:https://www.cnblogs.com/albert7xie/p/4886715.html
Copyright © 2011-2022 走看看