HDU4252 A Famous City

网友投稿 612 2022-09-06

HDU4252 A Famous City

HDU4252 A Famous City

H - 1008

Time Limit:3000MS     Memory Limit:32768KB     64bit IO Format:%I64d & %I64u

Submit  ​​Status​​​  ​​​Practice​​​  ​​​HDU 4252​​

Description

After Mr. B arrived in Warsaw, he was shocked by the skyscrapers and took several photos. But now when he looks at these photos, he finds in surprise that he isn't able to point out even the number of buildings in it. So he decides to work it out as follows:  - divide the photo into n vertical pieces from left to right. The buildings in the photo can be treated as rectangles, the lower edge of which is the horizon. One building may span several consecutive pieces, but each piece can only contain one visible building, or no buildings at all.  - measure the height of each building in that piece.  - write a program to calculate the minimum number of buildings.  Mr. B has finished the first two steps, the last comes to you.

Input

Each test case starts with a line containing an integer n (1 <= n <= 100,000). Following this is a line containing n integers - the height of building in each piece respectively. Note that zero height means there are no buildings in this piece at all. All the input numbers will be nonnegative and less than 1,000,000,000.

Output

For each test case, display a single line containing the case number and the minimum possible number of buildings in the photo.

Sample Input

3 1 2 3 3 1 2 1

Sample Output

Case 1: 3 Case 2: 2

Hint

The possible configurations of the samples are illustrated below:

#include#include#include#includeint a[100005];using namespace std;int main(){ int n,kase=0; while(scanf("%d",&n)!=EOF) { int ans=n,k=0;// printf("ans==%d\n",ans); for(int i=0;i=k;j--){ if(a[i] > a[j]) break; if(a[i] == a[j]) { ans--; break; } } } } printf("Case %d: ",++kase); printf("%d\n",ans); } return 0;}

这题比较坑,开始做,感觉挺简单的就是不对,后来试数找到了BUG,加了个条件就行了。

就是小的建筑物会把高的建筑物分割,这样两个高的建筑物就不能是一个了,必须是两个建筑物了。

if(a[i] > a[j]) break;

这样,循环到比自己小的建筑物上,就不用往后走了,省了时间

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:js闭包
下一篇:数据库管理中DML、DDL、DCL的区别详解(数据库ddl dml dcl dql)
相关文章

 发表评论

暂时没有评论,来抢沙发吧~