首页 > 代码库 > zoj 3778 Talented Chef
zoj 3778 Talented Chef
http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemId=5265
先确定n和m的大小,m大就输出最大值就可以。否则比较sum/m和max1的大小。
1 #include <cstdio> 2 #include <cstring> 3 #include <algorithm> 4 using namespace std; 5 6 int main() 7 { 8 int t; 9 scanf("%d",&t);10 while(t--)11 {12 int n,m;13 scanf("%d%d",&n,&m);14 int sum=0,max1=0;15 for(int i=1; i<=n; i++)16 {17 int x;18 scanf("%d",&x);19 sum+=x;20 max1=max(max1,x);21 }22 int ans=0;23 if(sum%m)24 {25 ans=sum/m+1;26 }27 else28 ans=sum/m;29 if(max1>ans)30 ans=max1;31 if(n>=m)32 {33 printf("%d\n",ans);34 }35 else36 {37 printf("%d\n",max1);38 }39 }40 return 0;41 }
zoj 3778 Talented Chef
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。