Codeforces Beta Round #61 (Div. 2) B. Petya and Countryside (DP)

来源:互联网 发布:迅捷网络登录 编辑:程序博客网 时间:2024/05/16 10:24

time limit per test2 seconds
memory limit per test256 megabytes
inputstandard input
outputstandard output
Little Petya often travels to his grandmother in the countryside. The grandmother has a large garden, which can be represented as a rectangle 1 × n in size, when viewed from above. This rectangle is divided into n equal square sections. The garden is very unusual as each of the square sections possesses its own fixed height and due to the newest irrigation system we can create artificial rain above each section.

Creating artificial rain is an expensive operation. That’s why we limit ourselves to creating the artificial rain only above one section. At that, the water from each watered section will flow into its neighbouring sections if their height does not exceed the height of the section. That is, for example, the garden can be represented by a 1 × 5 rectangle, where the section heights are equal to 4, 2, 3, 3, 2. Then if we create an artificial rain over any of the sections with the height of 3, the water will flow over all the sections, except the ones with the height of 4. See the illustration of this example at the picture:

这里写图片描述
As Petya is keen on programming, he decided to find such a section that if we create artificial rain above it, the number of watered sections will be maximal. Help him.

Input
The first line contains a positive integer n (1 ≤ n ≤ 1000). The second line contains n positive integers which are the height of the sections. All the numbers are no less than 1 and not more than 1000.

Output
Print a single number, the maximal number of watered sections if we create artificial rain above exactly one section.

Examples
input
1
2
output
1
input
5
1 2 1 2 1
output
3
input
8
1 2 1 1 1 3 3 4
output
6

题意:
从山上浇水,水往低处流,所以水只能流向高度小于或等于此高度的地方
给你n个数代表山的高度,问最多能浇几个单位

思路:
先从左往右筛一遍,筛出从当前点往左不大于其的最大长度
再从右往左筛一遍,筛出从当前点往右不大于其的最大长度
将每个点的上述两值相加-1便是该点最多能浇的单位数量,找出最大值便可

代码:

/*************************************************************************    > File Name: 62B.cpp    > Author: SIU    > Created Time: 2016年12月05日 星期一 15时28分07秒 ************************************************************************/#include<cstdio>#include<iostream>#include<cstring>using namespace std;int main(){    int n;    int num[1050];    scanf("%d",&n);    for(int i=1;i<=n;i++)        scanf("%d",&num[i]);    int str1[1050];    int str2[1050];    str1[1]=1;    for(int i=2;i<=n;i++)    {        if(num[i]>=num[i-1])            str1[i]=str1[i-1]+1;        else             str1[i]=1;    }    str2[n]=1;    for(int i=n-1;i>0;i--)    {        if(num[i]>=num[i+1])            str2[i]=str2[i+1]+1;        else             str2[i]=1;    }    int max=0;    for(int i=1;i<=n;i++)    {        int item=str1[i]+str2[i]-1;        if(item>max)            max=item;    }    printf("%d\n",max);    return 0;}
0 0
原创粉丝点击