nyoj-214 单调递增子序列(二)

题目链接:http://acm.nyist.net/JudgeOnline/problem.php?pid=214

用之前的方法会超时,看了网上的大神的做法,要用到二分法,二分插入法

代码:

#include
#include
#define min -999999
int stack[120000];
int main(){
	int top,num,i,low,high,mid,n,m;
	while(~scanf("%d",&n)){
		memset(stack,0,sizeof(stack));
		top=0;
		stack[0]=min;
		for(i=0;istack[top]){
				top++;
				stack[top]=num;
			}
			else{
				low=1,high=top;
				while(low<=high){  //插入到相对应的位置 
					mid=(low+high)/2;
					if(stack[mid]>num)
					   high=mid-1;
					else
					   low=mid+1;
				}
				stack[low]=num;
			}
		}
			printf("%d\n",top);
		}
	return 0;
}


你可能感兴趣的:(动态规划,基础算法)