标签:意思 整数 输出 递增 memory ble 数据 int 判断
给定一整型数列{a1,a2...,an}(0<n<=100000),找出单调递增最长子序列,并求出其长度。
如:1 9 10 5 11 2 13的最长单调递增子序列是1 9 10 11 13,长度为5。
7 1 9 10 5 11 2 13 2 2 -1
5 1
#include <iostream>
#include <cstring>
using namespace std;
const int INF=0x3f3f3f3f;
int a[100005];
int main()
{
int t;
while(cin>>t)
{
memset(a,0,sizeof(a));
int num,top=0;
a[0]=-INF;
for(int i=0;i<t;++i)
{
cin>>num;
if(num>a[top])
a[++top]=num;
else
{
int left=1,right=top;
while(left<=right)
{
int mid=(left+right)/2;
if(num>a[mid])
left=mid+1;
else
right=mid-1;
}
a[left]=num;
}
}
/* for(int i=0;i<t;++i)
cout<<a[i]<<" ";
cout<<endl;*/
cout<<top<<endl;
}
return 0;
}
数组a从1单元开始使用,0单元不用。
第一个数字肯定要入栈,判断当前输入的数字与栈顶元素的数字的大小关系,
如果比栈顶元素的数字大,入栈,
如果比栈顶元素的数字小,在前面的序列中找到比当前数字大的第一个元素的位置,
把该位置上的元素替换成该元素。
最后形成的序列是一个单调递增的有序列。
自己琢磨下,挺有意思的。。
标签:意思 整数 输出 递增 memory ble 数据 int 判断
原文地址:https://www.cnblogs.com/tianzeng/p/8964952.html