2084.Anton and School

Time Limit: 1s Memory Limit: 256MB

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:

2084_1.png

where aandb means bitwise AND, while aorb means bitwise OR.

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

Input Format(From the terminal/stdin)

The first line of the input contains a single integers n (1 \le n \le 200000)- the size of arrays b and c.

The second line contains n integers bi (0 \le bi \le 109)- elements of the array b.

Third line contains n integers ci (0 \le ci \le 109)- elements of the array c.

Output Format(To the terminal/stdout)

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.

Sample Input 1

Copy
4
6 8 4 4
16 22 10 10
 \n
 · · · \n
  ·  ·  ·  \n

Sample Output 1

Copy
3 5 1 1 
 · · · \n

Sample Input 2

Copy
5
8 25 14 7 16
19 6 9 4 25
 \n
 ·  ·  · ·  \n
  · · · ·  \n

Sample Output 2

Copy
-1
  \n

Submit

请先 登录

© 2025 FAQs