• 取整


    A. Equalize Prices Again
    time limit per test
    1 second
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard output

    You are both a shop keeper and a shop assistant at a small nearby shop. You have nn goods, the ii-th good costs aiai coins.

    You got tired of remembering the price of each product when customers ask for it, thus you decided to simplify your life. More precisely you decided to set the same price for all nn goods you have.

    However, you don't want to lose any money so you want to choose the price in such a way that the sum of new prices is not less than the sum of the initial prices. It means that if you sell all nn goods for the new price, you will receive at least the same (or greater) amount of money as if you sell them for their initial prices.

    On the other hand, you don't want to lose customers because of big prices so among all prices you can choose you need to choose the minimum one.

    So you need to find the minimum possible equal price of all nn goods so if you sell them for this price, you will receive at least the same (or greater) amount of money as if you sell them for their initial prices.

    You have to answer qq independent queries.

    Input

    The first line of the input contains one integer qq (1q1001≤q≤100) — the number of queries. Then qq queries follow.

    The first line of the query contains one integer nn (1n100)1≤n≤100) — the number of goods. The second line of the query contains nn integers a1,a2,,ana1,a2,…,an (1ai1071≤ai≤107), where aiai is the price of the ii-th good.

    Output

    For each query, print the answer for it — the minimum possible equal price of all nn goods so if you sell them for this price, you will receive at least the same (or greater) amount of money as if you sell them for their initial prices.

    Example
    input
    Copy
    3
    5
    1 2 3 4 5
    3
    1 2 2
    4
    1 1 1 1
    
    output
    Copy
    3
    2
    1
    
    #include<iostream>
    using namespace std;
     
    int main()
    {
        int n,q;
        cin >> q;
        while(q--)
        {
            int sum = 0,x;
            cin >> n;
            for(int i = 0;i < n;i++)
            {
                cin >> x;
                sum += x;    
            }
            if(sum % n == 0)
                cout << sum / n << endl;
            else
                cout << sum / n + 1 << endl;
            
        }
        
        return 0;
    }

    向上取整向下取整,简单,主要是理解

  • 相关阅读:
    Javascript正则表达式详解转载
    转载Sqlserver2005 存储过程分页
    转载手把手教你用C#打包应用程序
    学习内容
    用C#实现将HTML文件转换为CHM文件(转)
    C# Windows服务添加安装程序
    sql 2008评估期已过有关如何升级,企业试用版到期,升级为企业版+sql2008破解
    iis不能启动是什么原因?错误提示:“提示服务器没有及时相应启动或控制请求”
    .NET 获取数据库中所有表名的方法
    如何获取Dynamics当前登录的用户的GUID,进而获取用户的信息
  • 原文地址:https://www.cnblogs.com/biaobiao88/p/11749706.html
Copyright © 2020-2023  润新知