码迷,mamicode.com
首页 > 其他好文 > 详细

贪心/CoderForces 228c Fox and Box Accumulation

时间:2014-12-11 23:53:35      阅读:184      评论:0      收藏:0      [点我收藏+]

标签:style   blog   io   color   sp   for   on   div   log   

 1 #include<cstdio>
 2 #include<cstring>
 3 #include<algorithm>
 4 using namespace std;
 5 int a[110];
 6 int main()
 7 {
 8     int n;
 9     scanf("%d",&n);
10     for (int i=1;i<=n;i++) scanf("%d",&a[i]);
11     sort(a+1,a+n+1);
12     int left=n;
13     int ans=0;
14     while (left>0)
15     {
16         int now=0;
17         for (int i=1;i<=n;i++)
18         {
19             if (now<=a[i])
20             {
21                 a[i]=-1;
22                 now++;
23                 left--;
24             }
25         }
26         ans++;
27     }
28     printf("%d\n",ans);
29     return 0;
30 }

 

贪心/CoderForces 228c Fox and Box Accumulation

标签:style   blog   io   color   sp   for   on   div   log   

原文地址:http://www.cnblogs.com/NicoleLam/p/4158617.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!