A10765 | Anton and School
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
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.

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.
输入格式
The first line of the input contains a single integers $n$ ( $1<=n<=200000$ ) — the size of arrays $b$ and $c$ .
The second line contains $n$ integers $b_{i}$ ( $0<=b_{i}<=10^{9}$ ) — elements of the array $b$ .
Third line contains $n$ integers $c_{i}$ ( $0<=c_{i}<=10^{9}$ ) — elements of the array $c$ .
The second line contains $n$ integers $b_{i}$ ( $0<=b_{i}<=10^{9}$ ) — elements of the array $b$ .
Third line contains $n$ integers $c_{i}$ ( $0<=c_{i}<=10^{9}$ ) — elements of the array $c$ .
输出格式
If there is no solution, print $-1$ .
Otherwise, the only line of the output should contain $n$ non-negative integers $a_{i}$ — elements of the array $a$ . If there are multiple possible solutions, you may print any of them.
Otherwise, the only line of the output should contain $n$ non-negative integers $a_{i}$ — elements of the array $a$ . If there are multiple possible solutions, you may print any of them.
输入输出样例
输入 #1
4 6 8 4 4 16 22 10 10
输出 #1
3 5 1 1
输入 #2
5 8 25 14 7 16 19 6 9 4 25
输出 #2
-1
暂无题解
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted