B. A and B and Compilation Errors1100 / 思维

Posted 幽殇默

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了B. A and B and Compilation Errors1100 / 思维相关的知识,希望对你有一定的参考价值。


https://codeforces.com/problemset/problem/519/B
思维: 用异或的思想,其实也可以用和做差的思想。

#include<bits/stdc++.h>
using namespace std;
const int N=1e5+10;
int a[N],b[N],c[N],n;
int main(void)
{
	int n; cin>>n;
	int temp1=0,temp2=0;
	for(int i=1;i<=n;i++) cin>>a[i],temp1^=a[i];
	for(int i=1;i<=n-1;i++) cin>>b[i],temp1^=b[i],temp2^=b[i];
	for(int i=1;i<=n-2;i++) cin>>c[i],temp2^=c[i];
	cout<<temp1<<endl;
	cout<<temp2<<endl;
	return 0;
}

以上是关于B. A and B and Compilation Errors1100 / 思维的主要内容,如果未能解决你的问题,请参考以下文章

Educational Codeforces Round 78 (Rated for Div. 2) B. A and B

B. Mahmoud and a Triangle1000 / 数学

B. Omkar and Last Class of Math1300 / 数论

1013 B. And

codeforces 653B B. Bear and Compressing(dfs)

B. Alyona and a tree(树上差分&倍增)