国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學院 > 開發(fā)設計 > 正文

POJ 3258-River Hopscotch(二分法-最大化最短距離)

2019-11-10 17:14:12
字體:
供稿:網(wǎng)友
River Hopscotch
Time Limit: 2000MS Memory Limit: 65536K
Total Submissions: 12505 Accepted: 5358

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 2214112117

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

USACO 2006 December Silver

題目意思:

從起點到終點,即0到L這段路程中有N塊石頭,奶牛每次只能從前一塊跳到后一塊石頭上去。想要移除除了起點終點之外的M塊石頭,使得奶牛從起點到終點跳躍的最短距離最大。

解題思路:

添加起終點的石頭0和L。對移除的石頭個數(shù)二分,low是奶牛從起點到終點跳躍的最短距離,high是整個路程L。①枚舉各個石頭,計算其與前一塊石頭之間的距離,然后相加起來:如果比最短距離小,說明距離短了,可以移除當前石頭來增大距離,移除的石頭數(shù)量加1;否則說明距離夠大,置零后重新計算下一段距離。②枚舉完畢后:如果移除的石頭數(shù)量大于M,說明距離偏大,范圍變成前二分之一;否則說明距離偏小,范圍變成后二分之一。
#include<iostream>#include<cstdio>#include<iomanip>#include<cmath>#include<cstdlib>#include<cstring>#include<map>#include<algorithm>using namespace std;#define INF 0xfffffff#define MAXN 50050int a[MAXN];int l,n,m,high,low,mid;bool solve(){    int res=0,sum=0;    for(int i=1; i<=n+1; ++i)    {        int t=a[i]-a[i-1];//與前一塊石頭之間的距離        sum+=t;//若干塊距離之和        if(sum<=mid) ++res;        else sum=0;    }    if(res<=m) return true;    else return false;}int main(){#ifdef ONLINE_JUDGE#else    freopen("F:/cb/read.txt","r",stdin);    //freopen("F:/cb/out.txt","w",stdout);#endif    ios::sync_with_stdio(false);    cin.tie(0);    cin>>l>>n>>m;    high=l,low=l;    a[0]=0;    a[n+1]=l;    for(int i=0; i<=n; ++i)        cin>>a[i];    sort(a,a+n+2);    for(int i=1; i<=n+1; ++i)    {        int t=a[i]-a[i-1];//與前一塊石頭之間的距離        if(t<low) low=t;    }    while(low<=high)    {        mid=0.5*(low+high);        if(solve()) low=mid+1;        else high=mid-1;    }    cout<<low<<endl;    return 0;}/*25 5 2214112117*/
發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 榕江县| 青阳县| 桐梓县| 丰县| 新竹市| 泸水县| 海晏县| 冷水江市| 改则县| 建德市| 班戈县| 谷城县| 白朗县| 广西| 高淳县| 仁寿县| 得荣县| 溧水县| 朝阳县| 建德市| 深水埗区| 南昌市| 海城市| 育儿| 盈江县| 崇阳县| 佳木斯市| 吉安县| 曲松县| 栾城县| 郸城县| 甘洛县| 隆德县| 庆安县| 大方县| 都兰县| 临颍县| 双鸭山市| 寿宁县| 延安市| 盐亭县|