Codeforces Round #283 (Div. 2)-A. Minimum Difficulty (暴力)_html/css_WEB-ITnose

php中文网
发布: 2016-06-24 11:52:09
原创
1197人浏览过

Minimum Difficulty

time limit per test

2 seconds

memory limit per test

256 megabytes

input

standard input

output

standard output

Mike is trying rock climbing but he is awful at it.

There are n holds on the wall, i-th hold is at height ai off the ground. Besides, let the sequence ai increase, that is, ai?

Today Mike decided to cover the track with holds hanging on heights a1, ..., an. To make the problem harder, Mike decided to remove one hold, that is, remove one element of the sequence (for example, if we take the sequence (1,?2,?3,?4,?5) and remove the third element from it, we obtain the sequence (1,?2,?4,?5)). However, as Mike is awful at climbing, he wants the final difficulty (i.e. the maximum difference of heights between adjacent holds after removing the hold) to be as small as possible among all possible options of removing a hold. The first and last holds must stay at their positions.

Help Mike determine the minimum difficulty of the track after removing one hold.

立即学习前端免费学习笔记(深入)”;

Input

The first line contains a single integer n (3?≤?n?≤?100) ? the number of holds.

The next line contains n space-separated integers ai (1?≤?ai?≤?1000), where ai is the height where the hold number i hangs. The sequence ai is increasing (i.e. each element except for the first one is strictly larger than the previous one).

Output

Print a single number ? the minimum difficulty of the track after removing a single hold.

Sample test(s)

input

31 4 6
登录后复制

output

input

51 2 3 4 5
登录后复制

output

input

51 2 3 7 8
登录后复制

output

Note

In the first sample you can remove only the second hold, then the sequence looks like (1,?6), the maximum difference of the neighboring elements equals 5.

In the second test after removing every hold the difficulty equals 2.

In the third test you can obtain sequences (1,?3,?7,?8), (1,?2,?7,?8), (1,?2,?3,?8), for which the difficulty is 4, 5 and 5, respectively. Thus, after removing the second element we obtain the optimal answer ? 4.



模力视频
模力视频

模力视频 - AIGC视频制作平台 | AI剪辑 | 云剪辑 | 海量模板

模力视频 51
查看详情 模力视频



题意:给一列n个数,让你选出删除一个中间值(第一个和最后一个不可删)之后,相邻两数之间的差值的最大值,问这个最大值最小可以是多少。


分析:暴力可解。枚举删除值的位置,每次求出间距的最大值即可。





AC代码:

#include <stdio.h>#include <string.h>#include <iostream>#include <algorithm>#include <vector>#include <queue>#include <set>#include <map>#include <string>#include <math.h>#include <stdlib.h>#include <time.h>using namespace std;#define INF 0x7fffffffint a[105];int main(){    #ifdef sxk        freopen("in.txt","r",stdin);    #endif    int n;    while(scanf("%d",&n)!=EOF)    {        for(int i=0; i<n; i++)            scanf("%d", &a[i]);        int ans = 123456789;        for(int i=1; i<n-1; i++){       //枚举删除元素的位置,注意下标1~n-2            int xx = 0;            for(int j=1; j<n; j++){                int x;                if(j == i){             //删除的位置,直接越过                    j ++;                    x = a[j] - a[j-2];                      }                else{                    x = a[j] - a[j-1];                }                if(xx < x) xx = x;            }            if(ans > xx) ans = xx;        }        printf("%d\n", ans);    }    return 0;}
登录后复制


HTML速学教程(入门课程)
HTML速学教程(入门课程)

HTML怎么学习?HTML怎么入门?HTML在哪学?HTML怎么学才快?不用担心,这里为大家提供了HTML速学教程(入门课程),有需要的小伙伴保存下载就能学习啦!

下载
来源:php中文网
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
开源免费商场系统广告
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 意见反馈 讲师合作 广告合作 最新更新 English
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号