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

杭电1257

时间:2017-02-16 23:23:28      阅读:195      评论:0      收藏:0      [点我收藏+]

标签:top   nbsp   scan   blog   clu   print   div   amp   while   

 1 //只需要一个数组存可用系统最高拦截高度
 2 #include<stdio.h>
 3 int s[6000];
 4 int main()
 5 {
 6     int n;
 7     while(~scanf("%d",&n))
 8     {
 9         int ans=1,top=-1,x,i,j;
10         for(i=0; i<n; ++i)
11         {
12             scanf("%d",&x);
13             if(top==-1)
14                 s[++top]=x;
15             else
16             {
17                 for(j=0; j<=top; ++j)
18                 {
19                     if(s[j] >= x)
20                     {
21                         s[j]=x;
22                         break;
23                     }
24                 }
25                 if(j > top)
26                 {
27                     ++ans;
28                     s[++top]=x;
29                 }
30             }
31         }
32         printf("%d\n",ans);
33     }
34 }

 

杭电1257

标签:top   nbsp   scan   blog   clu   print   div   amp   while   

原文地址:http://www.cnblogs.com/qq188380780/p/6407365.html

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