2019 蓝桥杯省赛 B 组模拟赛(一)——最长上升子序列

题目连接:https://nanti.jisuanke.com/t/36113c++ 不必定连续的最长上升子序列spa #include <bits/stdc++.h> using namespace std; const int N = 1e5 + 9; int f[N], a[N]; int n; int find(int l, int r, int x) { while (l < r) {
相关文章
相关标签/搜索