CF675C.Money Transfers

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

There are nn banks in the city where Vasya lives, they are located in a circle, such that any two banks are neighbouring if their indices differ by no more than 11 . Also, bank 11 and bank nn are neighbours if n>1 . No bank is a neighbour of itself.

Vasya has an account in each bank. Its balance may be negative, meaning Vasya owes some money to this bank.

There is only one type of operations available: transfer some amount of money from any bank to account in any neighbouring bank. There are no restrictions on the size of the sum being transferred or balance requirements to perform this operation.

Vasya doesn't like to deal with large numbers, so he asks you to determine the minimum number of operations required to change the balance of each bank account to zero. It's guaranteed, that this is possible to achieve, that is, the total balance of Vasya in all banks is equal to zero.

输入格式

The first line of the input contains a single integer nn ( 1<=n<=1000001<=n<=100000 ) — the number of banks.

The second line contains nn integers aia_{i} ( 109<=ai<=109-10^{9}<=a_{i}<=10^{9} ), the ii -th of them is equal to the initial balance of the account in the ii -th bank. It's guaranteed that the sum of all aia_{i} is equal to 00 .

输出格式

Print the minimum number of operations required to change balance in each bank to zero.

输入输出样例

  • 输入#1

    3
    5 0 -5
    

    输出#1

    1
    
  • 输入#2

    4
    -1 0 1 0
    

    输出#2

    2
    
  • 输入#3

    4
    1 2 3 -6
    

    输出#3

    3
    

说明/提示

In the first sample, Vasya may transfer 55 from the first bank to the third.

In the second sample, Vasya may first transfer 11 from the third bank to the second, and then 11 from the second to the first.

In the third sample, the following sequence provides the optimal answer:

  1. transfer 11 from the first bank to the second bank;
  2. transfer 33 from the second bank to the third;
  3. transfer 66 from the third bank to the fourth.
首页