PivotOJ

Preokret

시간 제한: 1000ms메모리 제한: 512MB출처: COCI 2018-2019BOJ 16750

문제

If they continue playing like this, soon the basketball players of the world's best league, the NBA, will put a ball in the basket every second. So there will no longer be any defense, tactics nor basketball.

Let's imagine observing one of these future matches between Team A and Team B. We know how many points both Team A and Team B have scored and the exact second when it happened. Within a second, it will not be possible to score more than one point.

King James is observing the task input and wants to answer the following two questions:

  1. How many points have been scored during the first half-time, that is in the first half of the game, if we know that the entire game lasts 4 × 12 minutes?
  2. How many "turnarounds" have happened during the match, i.e. how many times has a team come from a losing situation (has strictly fewer points scored than the other team) to a leading one (has strictly more points scored than the other team)?

입력

The first line contains a positive integer A (1 ≤ A ≤ 2879), the number of points Team A has scored. In the following A lines there are positive integers As (1 ≤ As ≤ 2880), the seconds in which Team A was scoring points ordered from the smallest to the largest number.

In the (A + 2)th line there is a positive integer B (1 ≤ B ≤ 2879), the number of points Team B has scored. In the following B lines there are positive integers Bs (1 ≤ Bs ≤ 2880), the seconds in which Team B was scoring points ordered from the smallest to the largest number.

출력

In the first line print an integer value, the answer to the first question from the text of the task. In the second line print an integer value, the answer to the second question from the text of the task.

예제

예제 1

입력
3
10
1400
1500
2
7
2000
출력
3
1

예제 2

입력
6
15
30
35
55
60
2065
7
20
25
40
45
50
2070
2075
출력
10
5

예제 3

입력
11
1402
1412
1428
1430
1441
1444
1453
1483
1485
1489
1490
9
1403
1405
1409
1435
1459
1460
1461
1487
1495
출력
8
2
코드를 제출하려면 로그인하세요.