-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathContestProposal.java
More file actions
36 lines (34 loc) · 900 Bytes
/
ContestProposal.java
File metadata and controls
36 lines (34 loc) · 900 Bytes
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
import java.util.Scanner;
public class ContestProposal {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int t = sc.nextInt();
for (int i = 0; i < t; i++) {
int n = sc.nextInt();
int[] a = new int[n];
int[] b = new int[n];
for (int j = 0; j < n; j++) {
a[j] = sc.nextInt();
}
for (int j = 0; j < n; j++) {
b[j] = sc.nextInt();
}
System.out.println(helper(n, a, b));
}
}
static int helper(int n, int[] a, int[] b) {
int res = 0;
int ai = 0;
int bi = 0;
while (bi < n) {
if (a[ai] > b[bi]) {
res++;
bi++;
} else {
ai++;
bi++;
}
}
return res;
}
}