-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path942.cpp
59 lines (52 loc) · 1.15 KB
/
942.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
// Neepan Biswas
// neepanb ~ codeforces
#include<bits/stdc++.h>
using namespace std;
using lli = long long int;
using ch = char;
using str=string;
using ld = long double;
using pi = pair<lli,lli>;
using vp = vector<pi>;
using vi = vector<lli>;
using vs = vector<str>;
using vc = vector<ch>;
using bl =bool;
using mp=map<lli,lli>;
using ump=unordered_map<lli,lli>;
#define fr(i,x,n) for (lli i=(x);i<=n;i++)
#define fr1(i,x,n) for (lli i = (x); i>=n; i--)
#define pb push_back
#define eb emplace_back
#define sz(x) (lli)x.size()
#define ff first
#define ss second
#define all(v) v.begin(), v.end()
#define debug(x) cout << '>' << #x << ':' << x << endl;
#define cd(condition, value_if_true, value_if_false) ((condition) ? (value_if_true) : (value_if_false))
#pragma GCC optimize("unroll-loops,O3,Ofast")
#pragma GCC target("avx2,avx,fma,bmi,bmi2,lzcnt,popcnt")
int main(){
ios::sync_with_stdio(false);
cin.tie(nullptr);
lli t;
cin>>t;
while(t--){
lli n;
cin>>n;
vi a(n);
fr(i,0,n-1)cin>>a[i];
vi b(n);
fr(i,0,n-1)cin>>b[i];
lli cnt=0,j=0;
fr(i,0,n-1){
if(a[i]>b[j++]){
cnt++;
i--;
}
if(j>n-1)break;
}
cout<<cnt<<endl;
}
return 0;
}