CF573B.Bear and Blocks
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Limak is a little bear who loves to play. Today he is playing by destroying block towers. He built n towers in a row. The i -th tower is made of hi identical blocks. For clarification see picture for the first sample.
Limak will repeat the following operation till everything is destroyed.
Block is called internal if it has all four neighbors, i.e. it has each side (top, left, down and right) adjacent to other block or to the floor. Otherwise, block is boundary. In one operation Limak destroys all boundary blocks. His paws are very fast and he destroys all those blocks at the same time.
Limak is ready to start. You task is to count how many operations will it take him to destroy all towers.
输入格式
The first line contains single integer n ( 1<=n<=105 ).
The second line contains n space-separated integers h1,h2,...,hn ( 1<=hi<=109) — sizes of towers.
输出格式
Print the number of operations needed to destroy all towers.
输入输出样例
输入#1
6 2 1 4 6 2 2
输出#1
3
输入#2
7 3 3 3 1 3 3 3
输出#2
2
说明/提示
The picture below shows all three operations for the first sample test. Each time boundary blocks are marked with red color.
After first operation there are four blocks left and only one remains after second operation. This last block is destroyed in third operation.