比赛 20120619 评测结果 AAAAAAAAAA
题目名称 免费午餐 最终得分 100
用户昵称 NVIDIA 运行时间 0.035 s
代码语言 C++ 内存使用 7.94 MiB
提交时间 2016-04-22 10:16:13
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<cmath>
#include<algorithm>
#define Q 1000010 
using namespace std;
int n,a[Q],b[Q],ANS=0;
int main()
{
	freopen("lunch.in","r",stdin);
	freopen("lunch.out","w",stdout);
	ios::sync_with_stdio(false);
	cin>>n;
	for(int i=1;i<=n;i++)
	 {
             cin>>a[i];
                              }
	for(int i=1;i<=n;i++)
	{
		if(a[i]==0)
			continue;
		int l=1,r=ANS,m;
		while(l<=r)
		{
			m=(l+r)>>1;
			if(b[m]>a[i])l=m+1;
			else r=m-1;
		}
		ANS=max(ANS,l);b[l]=a[i];
	}
 	          cout<<ANS<<endl;
	return 0;
}