• Atcoder AtCoder Regular Contest 079 E


    E - Decrease (Judge ver.)


    Time limit : 2sec / Memory limit : 256MB

    Score : 600 points

    Problem Statement

    We have a sequence of length N consisting of non-negative integers. Consider performing the following operation on this sequence until the largest element in this sequence becomes N1 or smaller. (The operation is the same as the one in Problem D.)

    • Determine the largest element in the sequence (if there is more than one, choose one). Decrease the value of this element by N, and increase each of the other elements by 1.

    It can be proved that the largest element in the sequence becomes N1 or smaller after a finite number of operations.

    You are given the sequence ai. Find the number of times we will perform the above operation.

    Constraints

    • 2N50
    • 0ai1016+1000

    Input

    Input is given from Standard Input in the following format:

    N
    a1 a2 ... aN
    

    Output

    Print the number of times the operation will be performed.


    Sample Input 1

    Copy
    4
    3 3 3 3
    

    Sample Output 1

    Copy
    0
    

    Sample Input 2

    Copy
    3
    1 0 3
    

    Sample Output 2

    Copy
    1
    

    Sample Input 3

    Copy
    2
    2 2
    

    Sample Output 3

    Copy
    2
    

    Sample Input 4

    Copy
    7
    27 0 0 0 0 0 0
    

    Sample Output 4

    Copy
    3
    

    Sample Input 5

    Copy
    10
    1000 193 256 777 0 1 1192 1234567891011 48 425
    

    Sample Output 5

    Copy
    1234567894848
    模拟一下就可以了
    #include <iostream> 
    #include <algorithm> 
    #include <cstring> 
    #include <cstdio>
    #include <vector> 
    #include <queue> 
    #include <cstdlib> 
    #include <iomanip>
    #include <cmath> 
    #include <ctime> 
    #include <map> 
    #include <set> 
    using namespace std; 
    #define lowbit(x) (x&(-x)) 
    #define max(x,y) (x>y?x:y) 
    #define min(x,y) (x<y?x:y) 
    #define MAX 100000000000000000 
    #define MOD 1000000007
    #define pi acos(-1.0) 
    #define ei exp(1) 
    #define PI 3.141592653589793238462
    #define ios() ios::sync_with_stdio(false)
    #define INF 0x3f3f3f3f3f 
    #define mem(a) (memset(a,0,sizeof(a))) 
    typedef long long ll;
    ll n,k,x,m;
    priority_queue<ll>q;
    int main()
    {
        ios();
        scanf("%lld",&n);
        for(int i=1;i<=n;i++)
        {
            scanf("%lld",&x);
            q.push(x);
        }
        k=0;
        while(q.top()+k>=n)
        {
            ll ans=q.top()+k;
            q.pop();
            m=ans/n;
            ans-=m*n;
            k+=m;
            q.push(ans-k);
        }
        printf("%lld
    ",k);
        return 0;
    }
  • 相关阅读:
    Java技术学习笔记:C/S 与B/S 区别
    Java开发面试题总结(八)
    Java技术笔记:数据库的性能优化
    零基础学习Python可以学会吗?你有哪些方法?
    java培训学习路线图之SpringBoot多模块开发学习
    计算机专业选Java和Python哪个前景好点?
    bzoj2152 聪聪可可
    bzoj1468 Tree
    bzoj2879 [Noi2012]美食节
    bzoj2208 [Jsoi2010]连通数
  • 原文地址:https://www.cnblogs.com/shinianhuanniyijuhaojiubujian/p/7260191.html
Copyright © 2020-2023  润新知