zoukankan      html  css  js  c++  java
  • HDU 4004 The Frog's Games 【二分】

    Problem Description
    The annual Games in frogs' kingdom started again. The most famous game is the Ironfrog Triathlon. One test in the Ironfrog Triathlon is jumping. This project requires the frog athletes to jump over the river. The width of the river is L (1<= L <= 1000000000). There are n (0<= n <= 500000) stones lined up in a straight line from one side to the other side of the river. The frogs can only jump through the river, but they can land on the stones. If they fall into the river, they
    are out. The frogs was asked to jump at most m (1<= m <= n+1) times. Now the frogs want to know if they want to jump across the river, at least what ability should they have. (That is the frog's longest jump distance).
     
    Input
    The input contains several cases. The first line of each case contains three positive integer L, n, and m.
    Then n lines follow. Each stands for the distance from the starting banks to the nth stone, two stone appear in one place is impossible.
     
    Output
    For each case, output a integer standing for the frog's ability at least they should have.
     
    Sample Input
    6 1 2 2 25 3 3 11 2 18
     
    Sample Output
    4 11
     
    题意:就是说青蛙想过一条河,河的宽度L ,有N块石头 ,青蛙最多可跳M次  ,求青蛙的最小弹跳能力
    思路:二分实现
    代码如下:
    View Code
    #include<stdio.h>
    #include<string.h>
    #include<iostream>
    #include<algorithm>
    using namespace std;
    int f[500005], len, m, n;
    int judge(int mm)
    {
        int dis=0, count=1, i;
        if(f[0]-dis>mm)
            return 0;
        for(i=1; i<=n; i++)
        {
            if(f[i]-dis>mm)
            {
                dis=f[i-1];
                if(f[i]-dis>mm)
                    return 0;
                count++;
            }
        }
        if(count>m)
            return 0;
        return 1;
    }
    int main()
    {
        int i, j, mid, left, right;
        while(scanf("%d%d%d", &len, &n, &m)!=EOF)
        {
            f[0]=0;
            for(i=0; i<n; i++)
                scanf("%d", &f[i]);
            f[n]=len;
            sort(f, f+n+1);
            int dis=0;
            left=0, right=len;
            while(left<right)
            {
                //mid=(left+right)/2;
                mid=left+(right-left)/2;
                if(judge(mid)) //跳的步数小了
                    right=mid;
                else
                    left=mid+1;
            }
            printf("%d\n", right);
        }
    }
  • 相关阅读:
    Python_代码练习_写一个判断是否为小数的函数
    Python学习杂记_11_函数(一)
    Python学习杂记_10_三元运算符
    Python学习杂记_9_集合操作
    Python学习杂记_8_从程序外部传参的办法sys.argv
    Python学习杂记_7_文件操作
    Python学习杂记_6_字典常用操作
    Python学习杂记_5_列表常用操作
    Python学习杂记_4_分支和循环
    Python学习杂记_3_字符串操作的常用方法
  • 原文地址:https://www.cnblogs.com/Hilda/p/2635905.html
Copyright © 2011-2022 走看看