跳到主要内容
图灵 OJTURING / ONLINE JUDGE

#F1840. BerSU Ball

    ID: 1846 传统题 2000ms 256MiB 尝试: 0 已通过: 0 难度: 2 上传者: 标签>搜索动态规划图匹配贪心排序双指针图论算法思想编程与模拟基础难度共享题库Codeforces英文题面题目来源题面语言

BerSU Ball

题目描述

B. BerSU Ball
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

The Berland State University is hosting a ballroom dance in celebration of its 100500-th anniversary! n boys and m girls are already busy rehearsing waltz, minuet, polonaise and quadrille moves.

We know that several boy&girl pairs are going to be invited to the ball. However, the partners' dancing skill in each pair must differ by at most one.

For each boy, we know his dancing skills. Similarly, for each girl we know her dancing skills. Write a code that can determine the largest possible number of pairs that can be formed from n boys and m girls.

Input

The first line contains an integer n (1≤n≤100) − the number of boys. The second line contains sequence a1,a2,...,an (1≤ai≤100), where ai is the i-th boy's dancing skill.

Similarly, the third line contains an integer m (1≤m≤100) − the number of girls. The fourth line contains sequence b1,b2,...,bm (1≤bj≤100), where bj is the j-th girl's dancing skill.

Output

Print a single number − the required maximum possible number of pairs.

Examples
Input
4
1 4 6 2
5
5 1 5 7 9
Output
3
Input
4
1 2 3 4
4
10 11 12 13
Output
0
Input
5
1 1 1 1 1
3
1 2 3
Output
2

题目来源:fps-www.educg.net-codeforce-1-2833.xml.zip;FPS 共享题包,题包内第 1409 题。保留原作者与原赛事署名。