Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
141272 | 冼俊烨 | 最长不下降子序列 | C++ | 解答错误 | 0 | 13 MS | 260 KB | 592 | 2024-04-03 13:15:11 |
//最长不下降序列 - 非动规算法 #include <bits/stdc++.h> using namespace std; int Stack[100001]= {114514}; //防止第一个元素太小 int main() { int n, longest=0; scanf("%d",&n); for (int i = 0,temp; i<n; i++) { scanf("%d",&temp); if (temp >= Stack[longest]) //比栈顶元素大数就入栈 Stack[++longest]=temp; else { int j=upper_bound(Stack,Stack+longest,temp)-Stack; Stack[j]=temp; } } printf("%d\n",longest); //最长序列数就是栈的大小 return 0; }