计蒜客蓝桥模拟 LIS 是最长上升子序列。什么是最长上升子序列? 就是给你一个序列,请你在其中求出一段最长严格上升的部分,它不一定要连续。 就像这样:22, 33, 44, 77 和 22, 33, 44, 66 就是序列 22 55 33 44 11 77 66 的两个上升子序列,最长的长度是 44。在如下缺省代码情况下填空: #include <stdio.h> #include <stdlib.h> #define N 100009 int f[N], a[N]; int n; int find(int l, int r, int x) { wh...