[2016-05-11][51nod][1134 最长递增子序列]

  • 时间:2016-05-11 14:16:50 星期三

  • 题目编号:[2016-05-11][51nod][1134 最长递增子序列]

  • 题目大意:给出长度为N的数组,找出这个数组的最长递增子序列。(递增子序列是指,子序列的元素是递增的)

  • 分析:

    • 维护一个栈,如果是更大值,加入栈顶,否则,替换栈内第一个不小于它的数字
  1. #include<stdio.h>
  2. #include<algorithm>
  3. #include<string.h>
  4. using namespace std;
  5. const int maxn = 1E4 * 5 + 10;
  6. int a[maxn],stk[maxn];
  7. int main(){
  8. int n;
  9. scanf("%d",&n);
  10. for(int i = 1 ; i <= n ; ++i){
  11. scanf("%d",&a[i]);
  12. }
  13. int pcur = 0;
  14. for(int i = 1;i <= n;++i){
  15. if(!pcur){
  16. stk[pcur++] = a[i];
  17. }else {
  18. if(a[i] > stk[pcur - 1]){
  19. stk[pcur++] = a[i];
  20. }else if(a[i] < stk[pcur - 1]){
  21. int pos = lower_bound(stk,stk + pcur,a[i]) - stk;
  22. stk[pos] = a[i];
  23. }
  24. }
  25. }
  26. printf("%d\n",pcur);
  27. return 0;
  28. }


来自为知笔记(Wiz)


posted on 2016-05-11 14:19  红洋  阅读(387)  评论(0编辑  收藏  举报

导航