B. Interesting drink1100 / 二分

Posted 幽殇默

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了B. Interesting drink1100 / 二分相关的知识,希望对你有一定的参考价值。


https://codeforces.com/problemset/problem/706/B

#include<bits/stdc++.h>
using namespace std;
const int N=1e5+10;
int a[N],n,m,x;
int main(void)
{
	cin>>n;
	for(int i=0;i<n;i++) cin>>a[i];
	sort(a,a+n);
	cin>>m;
	while(m--)
	{
		cin>>x;
		int l=0,r=n-1;
		while(l<r)
		{
			int mid=l+r+1>>1;
			if(a[mid]<=x) l=mid;
			else r=mid-1;
		}
		if(a[l]>x) cout<<0<<endl;
		else cout<<l+1<<endl;
	}
	return 0;
}

以上是关于B. Interesting drink1100 / 二分的主要内容,如果未能解决你的问题,请参考以下文章

Codeforces 706B Interesting drink

B. Interesting Array(线段树)

?Good Bye 2019 B. Interesting Subarray

B. Interesting Array(位运算&差分)

2017博普杯 东北大学邀请赛(B. Drink too much water)(贪心+树链剖分)

B. Taxi1100 / 贪心