比赛 |
20120925 |
评测结果 |
AWAAWWWWWW |
题目名称 |
数列游戏 |
最终得分 |
30 |
用户昵称 |
TBK |
运行时间 |
0.013 s |
代码语言 |
C++ |
内存使用 |
2.51 MiB |
提交时间 |
2012-09-25 21:01:37 |
显示代码纯文本
#include <iostream>
#include <cmath>
#include <cstdlib>
#include <cstdio>
#include <string>
#include <cstring>
#include <set>
#include <algorithm>
using namespace std;
int a[1001],b,c,d,k[6][2],f[1001],t;
int main(void)
{
freopen ("seqgame.in","r",stdin);
freopen ("seqgame.out","w",stdout);
scanf("%d",&b);
for (c=1;c<=b;c++)
{
scanf("%d",&a[c]);
if (a[c]>c) a[c]=0;
}
for (c=1;c<=b;c++)
if (a[c]!=0)
{
if (c==1) f[c]=1;
else
{
for (d=c-1;d>=1;d--)
if ((a[c]>a[d])&&(a[d]!=0)) f[c]=f[c]>f[d]+1?f[c]:f[d]+1;
}
}
for (c=1;c<=b;c++)
if (t<f[c]) t=f[c];
printf("%d",t);
fclose(stdin);
fclose(stdout);
return 0;
}