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.
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本来是一道简单的二分题,因为细节理解不清导致WA了多次。。。应写成r=mid-1这样才能保证每次区间在缩小,且r>=l,l==r时还要算一次。#include<cstdio> int a[1000005]; int n,m; bool bins(int x) { int i,l=0,r=n-1,mid; while(r>=l)//注意 { mid=(r+l)/2; if(x==a[mid]) return 1; if(x>a[mid]) l=mid+1; else r=mid-1;//注意 } return 0; } int main() { int i,j,s,p; while(scanf("%d%d",&n,&m),n||m) { for(i=0;i<n;i++) scanf("%d",&a[i]); s=0; while(m--) { scanf("%d",&p); if(bins(p)) s++; } printf("%d\n",s); } return 0; }