博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
LIS(nlogn) POJ 3903 Stock Exchange
阅读量:6124 次
发布时间:2019-06-21

本文共 1095 字,大约阅读时间需要 3 分钟。

 

题意:LIS最长递增子序列  O(nlogn)

分析:设当前最长递增子序列为len,考虑元素a[i]; 若d[len]<a[i],则len++,并使d[len]=a[i]; 否则,在d[1~len]中二分查找第一个大于等于a[i]的位置j,使d[j]=a[i]。附上打印路径代码(准确性未知)

 

代码:

#include 
#include
#include
#include
using namespace std;const int N = 1e5 + 10;const int INF = 0x3f3f3f3f;int a[N], d[N], pos[N], fa[N];int n;void LIS(void) { int len = 1; d[1] = a[1]; fa[1] = -1; for (int i=2; i<=n; ++i) { if (d[len] < a[i]) { d[++len] = a[i]; // pos[len] = i; fa[i] = pos[len-1]; } else { int j = lower_bound (d+1, d+1+len, a[i]) - d; d[j] = a[i]; // pos[j] = i; fa[i] = (j == 1) ? -1 : pos[j-1]; } } printf ("%d\n", len); // vector
res; int i; // for (i=pos[len]; ~fa[i]; i=fa[i]) res.push_back (a[i]); // res.push_back (a[i]); // for (int i=res.size ()-1; i>=0; --i) printf ("%d%c", res[i], i == 0 ? '\n' : ' ');}int main(void) { while (scanf ("%d", &n) == 1) { for (int i=1; i<=n; ++i) { scanf ("%d", &a[i]); } LIS (); } return 0;}

  

转载于:https://www.cnblogs.com/Running-Time/p/4466966.html

你可能感兴趣的文章
Spring 中获取 request 的几种方法,及其线程安全性分析
查看>>
SpiderData 2019年2月14日 DApp数据排行榜
查看>>
PAT A1104
查看>>
软件测试的艺术第六章总结
查看>>
leetcode394. Decode String
查看>>
瞎说系列之正则表达式入门
查看>>
Service Worker
查看>>
根据调试工具看Vue源码之组件通信(一)
查看>>
MySql 简易安装指南
查看>>
vue跳转传参刷新后参数消失
查看>>
VIM 为什么光标移动缓慢
查看>>
十余位权威专家深度解读,达摩院2019十大科技趋势点燃科技热情
查看>>
vue配置font-awesome5
查看>>
CSS盒模型与BFC
查看>>
JavaScript数组学习记录_11
查看>>
[LeetCode] 905. Sort Array By Parity
查看>>
点击率预估界的“神算子”是如何炼成的?
查看>>
微信小程序下拉刷新:onPullDownRefresh正确使用姿势
查看>>
完美实现一个“回到顶部”
查看>>
前端脚手架,听起来玄乎,实际呢?
查看>>