eolymp
bolt
Попробуйте наш новый интерфейс для отправки задач
Задачи

A Famous City

A Famous City

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: \begin{itemize} \item 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. \item measure the height of each building in that piece. \item write a program to calculate the minimum number of buildings. \end{itemize} Mr. B has finished the first two steps, the last comes to you. \InputFile Each test case starts with a line containing an integer \textbf{n} (\textbf{1} ≤ \textbf{n} ≤ \textbf{100000}). Following this is a line containing \textbf{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 \textbf{1000000000}. \OutputFile For each test case, display a single line containing the case number and the minimum possible number of buildings in the photo. \Note The possible configurations of the samples are illustrated below: \includegraphics{https://static.e-olymp.com/content/55/55d54c718c95efdb29abe7b490bafef2a9c82467.jpg}
Лимит времени 3 секунды
Лимит использования памяти 32 MiB
Входные данные #1
3
1 2 3
3
1 2 1
Выходные данные #1
Case 1: 3
Case 2: 2
Источник ACM ICPC Fudan Local Programming Contest 2012