结构体lower_bound使用

Posted xiaoxiao179

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了结构体lower_bound使用相关的知识,希望对你有一定的参考价值。

裸题:https://ac.nowcoder.com/acm/contest/5929/B

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
const int inf = 0x3f3f3f3f;
int n;
struct node{
	int val,id;
	bool operator < (const node &b) const{
		if(val!=b.val) 
			return val<b.val;
		else 
			return id<b.id;
	}
}a[100000+50];
int main()
{
	scanf("%d",&n);
	for(int i=1;i<=n;i++) scanf("%d",&a[i].val),a[i].id=i;
	sort(a+1,a+n+1);
	cout<<lower_bound(a+1,a+n+1,(node){-100,0})-a<<endl;
	cout<<lower_bound(a+1,a+n+1,(node){-2,0})-a<<endl;
	cout<<lower_bound(a+1,a+n+1,(node){1,0})-a<<endl;
	cout<<lower_bound(a+1,a+n+1,(node){100,0})-a<<endl;
}


以上是关于结构体lower_bound使用的主要内容,如果未能解决你的问题,请参考以下文章

分享几个实用的代码片段(第二弹)

分享几个实用的代码片段(第二弹)

在C代码中将结构体变量作为参数传递效率忒低

lower_bound() 函数使用详解

代码题—lower_bound和upper_bound算法

如何优化C ++代码的以下片段 - 卷中的零交叉