hdu4252
Posted yijiull
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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的主要内容,如果未能解决你的问题,请参考以下文章
HDU 4464 Browsing History(最大ASCII的和)
HDU4057 Rescue the Rabbit(AC自动机+状压DP)