首页 > 代码库 > hdu4252
hdu4252
题目链接:HDU - 4252
据说水,可还是不会。。。。
参考:http://blog.csdn.net/a197p/article/details/45102907
1 #include<cstdio> 2 #include<cstring> 3 #include<iostream> 4 #include<cmath> 5 #include<algorithm> 6 using namespace std; 7 const int maxn=100010; 8 int a[maxn]; 9 int main() 10 { 11 int n; 12 int cas=0; 13 while(scanf("%d",&n)!=EOF) 14 { 15 int ans=n,k=0; 16 for(int i=0;i<n;i++) 17 { 18 scanf("%d",&a[i]); 19 if(a[i]==0) {ans--;k=i;} 20 for(int j=i-1;j>=k;j--) 21 { 22 if(a[i]>a[j]) break; 23 if(a[i]==a[j]) {ans--;break;} 24 } 25 } 26 printf("Case %d: ",++cas); 27 printf("%d\n",ans); 28 } 29 }
hdu4252
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。