题意:给定两个数组,问你有多少种方式可以把a重新排序后对于a的每一个数字都严格大于b
简单二分,主要是学一下怎么用lower_bound 和upper_bound
lower_bound(a+1,a+1+n,b[i])返回数组中第一个大于等于b[i]的位置,
upper_bound(a+1,a+1+n,b[i]) 返回数组中第一个严格大于b[i] 的位置,
如果找不到对应的话就返回最后一个元素的位置
#include<bits/stdc++.h>
using namespace std;
const int N=2e5+10,mod = 1e9+7;
typedef long long ll;
ll a[N];
ll b[N];
int T,n;
void solve()
{
cin>>n;
for(int i=1;i<=n;i++)cin>>a[i];
for(int i=1;i<=n;i++)cin>>b[i];
sort(a+1,a+1+n);
sort(b+1,b+1+n,greater<ll>());
ll res = 1;
for(int i=1;i<=n;i++){
ll tem = a+n-upper_bound(a+1,a+1+n,b[i])+1;
//cout<<*(upper_bound(a+1,a+1+n,b[i]))<<endl;
tem = tem-(i-1);
res = (res*tem)%mod;
}
cout<<res<<endl;
}
int main()
{
cin>>T;
while(T--){solve();}
}