您的位置:首页 > 健康 > 养生 > 网站推广企业_百度品牌广告_百度推广好不好做_株洲专业seo优化

网站推广企业_百度品牌广告_百度推广好不好做_株洲专业seo优化

2025/4/3 10:16:44 来源:https://blog.csdn.net/Ao_Tian/article/details/146913379  浏览:    关键词:网站推广企业_百度品牌广告_百度推广好不好做_株洲专业seo优化
网站推广企业_百度品牌广告_百度推广好不好做_株洲专业seo优化

在这里插入图片描述

思路:排好序,使用b集合,在a中找到最后比b[i]小的,在c中找到第一个比b[i]大的,然后相乘即可。

使用algorithm文件中自带的二分函数
upper_bound(first*,last*,val)
lower_bound(first*,last*,val)

#include <iostream>
#include <algorithm>
using namespace std;
typedef long long ll;ll a[100005];
ll b[100005];
ll c[100005];int main(void)
{ll n;cin>>n;for(int i=0;i<n;i++){cin>>a[i];}for(int i=0;i<n;i++){cin>>b[i];}for(int i=0;i<n;i++){cin>>c[i];}sort(a,a+n);sort(b,b+n);sort(c,c+n);ll ans=0;for(int i=0;i<n;i++){int j=lower_bound(a,a+n,b[i])-a;	int k=upper_bound(c,c+n,b[i])-c;ans+=j*(n-k);	}cout<<ans;return 0;
}

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com