zoukankan      html  css  js  c++  java
  • CD(二分)

    Problem Description

    Jack and Jill have decided to sell some of their Compact Discs, while they still have some value. They have decided to sell one of each of the CD titles that they both own. How many CDs can Jack and Jill sell?

    Neither Jack nor Jill owns more than one copy of each CD.

    Input

    The input consists of a sequence of test cases. The first line of each test case contains two non-negative integers N and M, each at most one million, specifying the number of CDs owned by Jack and by Jill, respectively. This line is followed by N lines listing the catalog numbers of the CDs owned by Jack in increasing order, and M more lines listing the catalog numbers of the CDs owned by Jill in increasing order. Each catalog number is a positive integer no greater than one billion. The input is terminated by a line containing two zeros. This last line is not a test case and should not be processed.

    Output

    For each test case, output a line containing one integer, the number of CDs that Jack and Jill both own.

    Sample Input

    3 3
    1
    2
    3
    1
    2
    4
    0 0

    Sample Output

     2

    虽然二分的思想小学就接触到到了,但是没想到查找居然这么快(emmm)

    下面是自己脑补的算法,卡时间过去了,之前卡了十几次

    #include<stdio.h>
    #include<iostream>
    #include<algorithm>
    #include<cmath>
    #include<map>
    #include<set>
    #include<vector>
    using namespace std;
    vector<long long> a;
    vector<long long>::iterator i,j;
    int main()
    {
        int n,m;
        long long z;
        while(scanf("%d%d",&n,&m),n,m)
        {
            a.clear();
            int M=0;
            while(n--)
            {
                scanf("%I64d",&z);
                a.push_back(z);
            }
            while(m--)
            {
                scanf("%d",&z);
                a.push_back(z);
            }
            sort(a.begin(),a.end());
            i=a.begin();
            j=i++;
            for(;i!=a.end();i++,j++)
            {
                if(*i==*j) M++;
            }
            printf("%d
    ",M);
        }
    }

    下面是二分的算法

    #include<stdio.h>
    int a[1000001];
    int main()
    {
        int n,m,f,l,i,mid,z,M;
        while(scanf("%d%d",&n,&m),n,m)
        {
            M=0;
            for(i=0;i<n;i++)
            scanf("%d",&a[i]);
            while(m--)
            {
                scanf("%d",&z);
                f=0;
                l=n-1;
                while(1)
                {
                    mid=(f+l)/2;
                    if(z>a[mid]) f=mid+1;
                    else if(z<a[mid]) l=mid-1;
                    else
                    {
                        M++;
                        break;
                    }
                    if(f>l) break;
                }
            }
            printf("%d
    ",M);
        }
    }
  • 相关阅读:
    在winform下实现左右布局多窗口界面的方法(一)
    C# 使用API检查域用户名和密码是否正确
    C#检查网络是否可以连接互联网
    总结:实体类和(XML或二进制)之间相互转(序列化和反序列化)
    XML和实体类之间相互转换(序列化和反序列化)
    C# XML反序列化与序列化举例:XmlSerializer
    XML文件与实体类的互相转换
    Message类的属性Msg所关联的消息ID
    C# Message 消息处理
    在.net中读写config文件的各种方法(自定义config节点)
  • 原文地址:https://www.cnblogs.com/mayouyou/p/8996182.html
Copyright © 2011-2022 走看看