懒人简约10行题解,提示l_b。
2024-08-25 20:43:27
发布于:广东
18阅读
0回复
0点赞
#include <bits/stdc++.h>
using namespace std;
int n,a[105],f;
int main(){
cin >>n;
for(int i=0;i<n;i++)cin >> a[i];
cin >>f;
if(lower_bound(a,a+n,f)-a<n and a[lower_bound(a,a+n,f)-a])cout << lower_bound(a,a+n,f)-a+1;
else cout << -1;
}
这里空空如也
有帮助,赞一个