https://blog.csdn.net/CUCUC1/article/details/106226577 ## 最长上升子序列$LIS$算法 + 例题 [最长上升子序列 (LIS) 详解+例题模板 (全)](https://blog.csdn.net/lxt_Lucia/article/details/81206439) #### 这类题就是要求关于$LIS$具体值,需要用双重循环 [HDU1087 Almost Sorted Array](http://acm.hdu.edu.cn/showproblem.php?pid=1087) #### 二分加贪心优化的$LIS$例题 [hdu 1950 Bridging signals](http://acm.hdu.edu.cn/showproblem.php?pid=1950) https://blog.csdn.net/CUCUC1/article/details/106125668 #### 单纯的求最大公共子序列的长度 [HDU 1159 Common Subsequence](http://acm.hdu.edu.cn/showproblem.php?pid=1159)