人见人爱A-B
<h1 style="color: rgb(26, 92, 200);">人见人爱A-B</h1><strong><span style="color: green; font-family: Arial;">Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 44577 Accepted Submission(s): 12569 </span></strong> <div align="left" class="panel_title">Problem Description</div><div class="panel_content">参加过上个月月赛的同学一定还记得其中的一个最简单的题目,就是{A}+{B},那个题目求的是两个集合的并集,今天我们这个A-B求的是两个集合的差,就是做集合的减法运算。(当然,大家都知道集合的定义,就是同一个集合中不会有两个相同的元素,这里还是提醒大家一下) 呵呵,很简单吧?</div><div class="panel_bottom"> </div> <div align="left" class="panel_title">Input</div><div class="panel_content">每组输入数据占1行,每行数据的开始是2个整数n(0<=n<=100)和m(0<=m<=100),分别表示集合A和集合B的元素个数,然后紧跟着n+m个元素,前面n个元素属于集合A,其余的属于集合B. 每个元素为不超出int范围的整数,元素之间有一个空格隔开. 如果n=0并且m=0表示输入的结束,不做处理。</div><div class="panel_bottom"> </div> <div align="left" class="panel_title">Output</div><div class="panel_content">针对每组数据输出一行数据,表示A-B的结果,如果结果为空集合,则输出“NULL”,否则从小到大输出结果,为了简化问题,每个元素后面跟一个空格. </div><div class="panel_bottom"> </div> <div align="left" class="panel_title">Sample Input</div><div class="panel_content"><pre><div style="font-family: Courier New,Courier,monospace;">3 3 1 2 3 1 4 7 3 7 2 5 8 2 3 4 5 6 7 8 0 0</div>
Sample Output
2 3 NULL
Author
lcy
Source
<span style="font-size:24px;">这道题我的思路是:与上次的那个find present(2)差不多,是我超时那个的想法,但是这个并没有超时,可能定义的数组长度比较小的缘故。具体想法是,先把一组数,输入到数组a里面,再输入一组数放到b里面,然后数组a中的每个元素,分别与b中的元素比较,如果有相同的话,当然仅有一个,此数计数为</span>
<span style="font-size:24px;">count1++(count1初值为0),这个数不是要找的数,break;判断数组a里面的下一个元素,如果没有b数组中没有一个与它相同的话,就把a数组中的这个数,放入数组c中……a数组中的每个元素判断完之后,如果count1==n,说明a数组里的每个元素b数组中都有,此时输出NULL。在数组c中,里面的元素表示的是a中有的,b中没有的,然后再按照从小到大的顺序排,依次输出。。。</span>
#include<iostream> #include<stdio.h> #include<algorithm> using namespace std; int main() { int n,m,i,j; while(scanf("%d%d",&n,&m),n||m) { int a[100]; int b[100]; int c[100]; int k=0; int count1=0; for(i=0;i<n;i++) cin>>a[i]; for(i=0;i<m;i++) cin>>b[i]; for(i=0;i<n;i++) { int count=0; for(j=0;j<m;j++) { if(a[i]==b[j]) { count1++; break; } if(a[i]!=b[j]) { count++; } } if(count==m) c[k++]=a[i]; } if(count1==n) printf("NULL"); else { for(i=0;i<k;i++) sort(c,c+k); for(i=0;i<k;i++) printf("%d ",c[i]); } printf("\n"); } return 0; }