最短题解
2024-11-17 10:54:28
发布于:江苏
7阅读
0回复
0点赞
#include <bits/stdc++.h>
using namespace std;
int h;
vector<int> v;
int main()
{
while (cin >> h && h)
{
auto it = lower_bound(v.begin(), v.end(), h);
if (it == v.end())
v.push_back(h);
else
*it = h;
}
cout << v.size();
return 0;
}
这里空空如也
有帮助,赞一个