当前你的浏览器版本过低,网站已在兼容模式下运行,兼容模式仅提供最小功能支持,网站样式可能显示不正常。
请尽快升级浏览器以体验网站在线编辑、在线运行等功能。

建议使用的浏览器:

谷歌Chrome 火狐Firefox Opera浏览器 微软Edge浏览器 QQ浏览器 360浏览器 傲游浏览器

2969:Skyscrapers

题目描述
In a seaside village, there is an avenue of skyscrapers. Each skyscrapers is 100m wide and has certain height. Due to very high price of parcels, any two consecutive skyscrapers are adjacent.

The avenue lies close to the beach so the street is exactly at the sea level.

Unfortunately, this year, due to the global warming, the sea level started to increase by one meter each day. If the skyscraper height is no greater than the current sea level, it is considered flooded.

A region is a maximal set of non-flooded, adjacent skyscrapers. This term is of particular importance, as it is suficient to deliver goods (like current, carrots or cabbages) to any single skyscraper in each region.

Hence, the city major wants to know how many regions there will be in the hard days that come. An example of an avenue with 5 skyscrapers after 2 days is given below.
输入解释
The input contains several test cases. The first line contains an integer t (t <= 15) denoting the number of test cases. Then t test cases follow. Each of them begins with a line containing two numbers n and d (1 <= n, d <=10^6), n is the number of skyscrapers and d is the number of days which the major wants
to query.

Skyscrapers are numbered from left to right. The next line contains n integers h1,h2,..., hn where 1 <= hi <= 10^9 is the height of skyscraper i. The third line of a single test case contains d numbers tj such that 0 <= t1 < t2 < ... < td-1 < td <=10^9.
输出解释
For each test case output d numbers r1,r2,...,rd, where rj is the number of regions on day tj .
输入样例
2
3 3
1 2 3
1 2 3
5 3
1 3 5 1 3
0 2 4
输出样例
1 1 0
1 2 1
来自杭电HDUOJ的附加信息
Recommend lcy

该题目是Virtual Judge题目,来自 杭电HDUOJ

源链接: HDU-2969

最后修改于 2020-10-25T22:58:45+00:00 由爬虫自动更新

共提交 0

通过率 --%
时间上限 内存上限
10000/5000MS(Java/Others) 32768/32768K(Java/Others)