zoj 3778 Talented Chef
题意:
有n个饼,给出完成每个饼所需要的时间t1,t2,...,tn,现在有m个锅(也就是说可以同时煎m个饼),问完成所有饼至少需要多少时间。
限制:
1 <= n,m,ti <= 40000
思路:
贪心
ans=max(ceil(sum(1~n,ti)/m),max(ti))
复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30/*zoj 3778 Talented Chef 题意: 有n个饼,给出完成每个饼所需要的时间t1,t2,...,tn,现在有m个锅(也就是说可以同时煎m个饼),问完成所有饼至少需要多少时间。 限制: 1 <= n,m,ti <= 40000 思路: 贪心 ans=max(ceil(sum(1~n,ti)/m),max(ti)) */ #include<iostream> #include<cstdio> using namespace std; int main(){ int T; scanf("%d",&T); while(T--){ int n,m; scanf("%d%d",&n,&m); int a; int sum=0,_max=0; for(int i=0;i<n;++i){ scanf("%d",&a); sum+=a; _max=max(_max,a); } int ans=max((sum+m-1)/m,_max); printf("%dn",ans); } return 0; }
最后
以上就是眼睛大电脑最近收集整理的关于zoj 3778 Talented Chef 贪心的全部内容,更多相关zoj内容请搜索靠谱客的其他文章。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复