ZOJ 3778: Talented Chef

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ZOJ 3778: Talented Chef相关的知识,希望对你有一定的参考价值。

ZOJ - 3778

///@author Sycamore, ZJNU
///@accepted_on 2017 - 01 - 17
///
#include<iostream>
#include<algorithm>
#include<algorithm>
using namespace std;
int main()
{
    int T;
    cin >> T;
    while (T--)
    {
        int N, M, t;
        long long sum = 0;
        int m = 0;
        cin >> N >> M;
        while (N--)
        {
            cin >> t;
            m = max(t, m);
            sum += t;
        }
        int ans;
        if (sum%M) ans = sum / M + 1;
        else ans = sum / M;
        ans = max(ans, m);
        cout << ans << endl;
    }
    return 0;
}

 

以上是关于ZOJ 3778: Talented Chef的主要内容,如果未能解决你的问题,请参考以下文章

bzoj 3778: 共鸣计算几何+dp

Ruby 代码块和 Chef

luogu3778/bzoj4898 商旅 (floyd+分数规划+spfa)

如何捕获Chef异常

您如何中止/结束 Chef 运行?

使用 Chef 静默安装特定应用程序版本