Codeforces Round #379 (Div. 2) F Anton and School(数学)

思路:转自别人的题解:

分析:只要知道 a[i]+a[j]=a[i]|a[j]+a[i]&a[j] 就好做了,我们令 sum=ni=1a[i] ,然后我们会得到 c[i]=nj=1(a[i]+a[j])b[i]=na[i]+sumb[i] b[i]+c[i]=na[i]+sum 然后就可以求出a数组啦,最后我们还要检查一下a数组是否能够使得b,c数组成立。


#include<bits/stdc++.h>
using namespace std;
const int maxn = 200000+7;
#define LL long long
LL b[maxn],c[maxn],a[maxn];
int cnt[70];

int main()
{
    int n;
	LL sum = 0;
	scanf("%d",&n);
	for(int i = 1;i<=n;i++)scanf("%lld",&b[i]),sum+=b[i];
	for(int i = 1;i<=n;i++)scanf("%lld",&c[i]),sum+=c[i];
	if(sum%(2*n))
	{
		printf("-1\n");
		return 0;
	}
	sum/=(2*n);
    for(int i = 1;i<=n;i++)
	{
		if(c[i]+b[i]-sum<0 || (c[i]+b[i]-sum)%n)
		{
			printf("-1\n");
			return 0;
		}
		a[i]=(c[i]+b[i]-sum)/n;
	}
	for(int i = 1;i<=n;i++)
		for(int j = 0;j<60;j++)
			if((a[i]>>j)&1)cnt[j]++;
	for(int i = 1;i<=n;i++)
	{
		LL sumb = 0,sumc=0;
		for(int j = 0;j<60;j++)
		{
			if((a[i]>>j)&1)
			{
				sumb+=cnt[j]*(1LL<<j);
				sumc+=n*(1LL<<j);
			}
			else
				sumc+=cnt[j]*1LL<<j;
		}
		if(sumb!=b[i] || sumc!=c[i])
		{
			printf("-1\n");
			return 0;
		}
	}
	for(int i = 1;i<=n;i++)
		printf("%lld ",a[i]);
}


F. Anton and School
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Anton goes to school, his favorite lessons are arraystudying. He usually solves all the tasks pretty fast, but this time the teacher gave him a complicated one: given two arrays b and c of length n, find array a, such that:

where a and b means bitwise AND, while a or b means bitwise OR.

Usually Anton is good in arraystudying, but this problem is too hard, so Anton asks you to help.

Input

The first line of the input contains a single integers n (1 ≤ n ≤ 200 000) — the size of arrays b and c.

The second line contains n integers bi (0 ≤ bi ≤ 109) — elements of the array b.

Third line contains n integers ci (0 ≤ ci ≤ 109) — elements of the array c.

Output

If there is no solution, print  - 1.

Otherwise, the only line of the output should contain n non-negative integers ai — elements of the array a. If there are multiple possible solutions, you may print any of them.

Examples
Input
4
6 8 4 4
16 22 10 10
Output
3 5 1 1 
Input
5
8 25 14 7 16
19 6 9 4 25
Output
-1

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值