zoukankan      html  css  js  c++  java
  • Codeforces 675C Money Transfers (思维题)

    There are n 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 1. Also, bank 1 and bank n 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.

    Input

    The first line of the input contains a single integer n (1 ≤ n ≤ 100 000) — the number of banks.

    The second line contains n integers ai ( - 109 ≤ ai ≤ 109), the i-th of them is equal to the initial balance of the account in the i-th bank. It's guaranteed that the sum of all ai is equal to 0.

    Output

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

    Examples
    input
    3
    5 0 -5
    output
    1
    input
    4
    -1 0 1 0
    output
    2
    input
    4
    1 2 3 -6
    output
    3
    Note

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

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

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

    1. transfer 1 from the first bank to the second bank;
    2. transfer 3 from the second bank to the third;
    3. transfer 6 from the third bank to the fourth.

     题意:

      n个负担着不同债务的银行围成环,每次每个银行只能向自己左边或者右边的银行转移资金。所有银行的债务和为0,问你最少转移多少次能让所有银行债务都为0。

     题解:

      求前缀和为0的子区间的个数k,区间长度n减去个数k就是答案了。

    #include<iostream>
    #include<map>
    #include<algorithm>
    using namespace std;
    int main()
    {
        int n;
        while(cin>>n)
        {
            map<long long,int> d;
            long long sum=0;
            int ans=n-1;
            for(int i=0;i<n;i++)
            {
                int x;
                cin>>x;
                sum+=x;
                d[sum]++;
                ans=min(ans,n-d[sum]);
            }
            cout<<ans<<endl;
        }
        return 0;
    }
  • 相关阅读:
    51nod 1050 循环数组最大子段和
    51nod 1183 编辑距离
    百度之星初赛一 补题
    jquery click嵌套 事件重复注册 多次执行的问题
    Shell变量赋值语句不能有空格
    Linux得到某个文件夹内文件的个数
    Ubuntu14.04下sogou输入法的输入框只显示英文不显示中文的问题
    Eclipse中mybatis的xml文件没有提示,出现the file cannot be validated as the XML definition.....
    整理一下postgresql的扩展功能postgis和pgrouting的使用
    Windows应用程序未响应
  • 原文地址:https://www.cnblogs.com/orion7/p/7338045.html
Copyright © 2011-2022 走看看