Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
140468 maoyu 最长不下降子序列 C++ 解答错误 10 17 MS 648 KB 566 2024-03-30 15:33:28

Tests(1/10):


#include<iostream> using namespace std; const int N = 1e5 + 10; int n, a[N], f[N], top = 0; int g(int x){ int l = 0, r = top, res = 0; while(l <= r){ int mid = (l + r) / 2; if(f[mid] < x){ r = mid - 1; res = mid; } else{ l = mid + 1; } } return res; } int main(){ cin >> n; for(int i = 0; i < n; i++){ cin >> a[i]; } for(int i = 0; i < n; i++){ if(a[i] >= f[top]) f[top+1] = a[i], top++; else f[g(a[i])] = a[i]; } // for(int i = 1; i <= top; i++) cout << f[i] << ' '; cout << top; return 0; }


测评信息: