ZOJ 3778: Talented Chef
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ZOJ 3778: Talented Chef相关的知识,希望对你有一定的参考价值。
///@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的主要内容,如果未能解决你的问题,请参考以下文章