2 条题解
-
212203沈宇阳 (12203沈宇阳) LV 8 @ 2022-09-16 14:36:18
#include <iostream>
#include <algorithm>
using namespace std;int main()
{
int a[100001],top=0,n,x;
cin>>n>>x;
a[++top]=x;
for(int i=2;i<=n;++i)
{
cin>>x;
if(x>=a[top])
a[++top]=x;
else
{
int p=upper_bound(a+1,a+top+1,x)-a;
a[p]=x;
}
}
cout<<top;
}//用upper_bound吧,看起来简便一点w -
12024-10-20 19:55:21@
#include <iostream>
#include <algorithm>
using namespace std;int main()
{
int a[100001],top=0,n,x;
cin>>n>>x;
a[++top]=x;
for(int i=2;i<=n;++i)
{
cin>>x;
if(x>=a[top])
a[++top]=x;
else
{
int p=upper_bound(a+1,a+top+1,x)-a;
a[p]=x;
}
}
cout<<top;
}
- 1
信息
- ID
- 1088
- 难度
- 4
- 分类
- (无)
- 标签
- 递交数
- 48
- 已通过
- 20
- 通过率
- 42%
- 上传者