首页 > 其他 > 详细

D - BerSU Ball

时间:2014-12-03 16:54:16      阅读:316      评论:0      收藏:0      [点我收藏+]

Description

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.

Sample Input

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

 

 
#include<stdio.h>
int a[110],b[110];
void sortquickly(int a[],int lenth)
{
    int mid;
    mid = a[0];
    int i,j;
    i=0;
    j=lenth-1;
    if(lenth>1)
    {
        while(i<j)
        {
            for(; j>i; j--)
            {
                if(a[j]<mid)
                {
                    a[i++]=a[j];
                    break;
                }
            }
            for(; i<j; i++)
            {
                if(a[i]>mid)
                {
                    a[j--]=a[i];
                    break;
                }
            }
        }
        a[i]=mid;
        sortquickly(a,i);
        sortquickly(a+i+1,lenth-i-1);
    }
}

int function(int a[],int b[],int n,int m)
{
    int i,t,k=0;
    for(i=0; i<n; i++)
    {
        for(t=0; t<m; t++)
        {
            if(a[i]==b[t]-1)
            {
                k=k+1;
                b[t]=-5;
                break;
            }
            else if(a[i]==b[t])
            {
                k=k+1;
                b[t]=-5;
                break;
            }
            else if(a[i]==b[t]+1)
            {
                k=k+1;
                b[t]=-5;
                break;
            }
        }
    }
    return k;
}
int main()
{
    int n,m,i,t;
    scanf("%d",&n);
    for(i=0; i<n; i++)
        scanf("%d",&a[i]);
    scanf("%d",&m);
    for(i=0; i<m; i++)
        scanf("%d",&b[i]);
    sortquickly(a,n);
    sortquickly(b,m);
    t=function(a,b,n,m);
    printf("%d",t);
    return 0;
}

 

D - BerSU Ball

原文:http://www.cnblogs.com/dongq/p/4140328.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!