CF234C.Weather
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Scientists say a lot about the problems of global warming and cooling of the Earth. Indeed, such natural phenomena strongly influence all life on our planet.
Our hero Vasya is quite concerned about the problems. He decided to try a little experiment and observe how outside daily temperature changes. He hung out a thermometer on the balcony every morning and recorded the temperature. He had been measuring the temperature for the last n days. Thus, he got a sequence of numbers t1,t2,...,tn , where the i -th number is the temperature on the i -th day.
Vasya analyzed the temperature statistics in other cities, and came to the conclusion that the city has no environmental problems, if first the temperature outside is negative for some non-zero number of days, and then the temperature is positive for some non-zero number of days. More formally, there must be a positive integer k ( 1<=k<=n−1 ) such that t_{1}<0,t_{2}<0,...,t_{k}<0 and t_{k+1}>0,t_{k+2}>0,...,t_{n}>0 . In particular, the temperature should never be zero. If this condition is not met, Vasya decides that his city has environmental problems, and gets upset.
You do not want to upset Vasya. Therefore, you want to select multiple values of temperature and modify them to satisfy Vasya's condition. You need to know what the least number of temperature values needs to be changed for that.
输入格式
The first line contains a single integer n ( 2<=n<=105 ) — the number of days for which Vasya has been measuring the temperature.
The second line contains a sequence of n integers t1,t2,...,tn (∣ti∣<=109) — the sequence of temperature values. Numbers ti are separated by single spaces.
输出格式
Print a single integer — the answer to the given task.
输入输出样例
输入#1
4 -1 1 -2 1
输出#1
1
输入#2
5 0 -1 1 2 -5
输出#2
2
说明/提示
Note to the first sample: there are two ways to change exactly one number so that the sequence met Vasya's condition. You can either replace the first number 1 by any negative number or replace the number -2 by any positive number.