• 【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;
    }
  • 相关阅读:
    解析json字符串
    python学习(十)文件操作方式
    python学习(九)集合
    python学习(八)内存地址及深/浅拷贝
    python学习(七)列表/字典合并、布尔型、交换变量值、列表转换字符串连接和分割
    python学习(六)字符串
    Python学习(五)字典
    python学习(四)数组,字符串,元组
    python学习(四)列表(数组)
    python学习(三)字符串格式化&strip的用法&小练习
  • 原文地址:https://www.cnblogs.com/albert7xie/p/4886715.html
Copyright © 2020-2023  润新知