A11913 | Mars rover
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Natasha travels around Mars in the Mars rover. But suddenly it broke down, namely — the logical scheme inside it. The scheme is an undirected tree (connected acyclic graph) with a root in the vertex $1$ , in which every leaf (excluding root) is an input, and all other vertices are logical elements, including the root, which is output. One bit is fed to each input. One bit is returned at the output.
There are four types of logical elements: [AND](https://en.wikipedia.org/wiki/Logical_conjunction) ( $2$ inputs), [OR](https://en.wikipedia.org/wiki/Logical_disjunction) ( $2$ inputs), [XOR](https://en.wikipedia.org/wiki/Exclusive_or) ( $2$ inputs), [NOT](https://en.wikipedia.org/wiki/Negation) ( $1$ input). Logical elements take values from their direct descendants (inputs) and return the result of the function they perform. Natasha knows the logical scheme of the Mars rover, as well as the fact that only one input is broken. In order to fix the Mars rover, she needs to change the value on this input.
For each input, determine what the output will be if Natasha changes this input.
There are four types of logical elements: [AND](https://en.wikipedia.org/wiki/Logical_conjunction) ( $2$ inputs), [OR](https://en.wikipedia.org/wiki/Logical_disjunction) ( $2$ inputs), [XOR](https://en.wikipedia.org/wiki/Exclusive_or) ( $2$ inputs), [NOT](https://en.wikipedia.org/wiki/Negation) ( $1$ input). Logical elements take values from their direct descendants (inputs) and return the result of the function they perform. Natasha knows the logical scheme of the Mars rover, as well as the fact that only one input is broken. In order to fix the Mars rover, she needs to change the value on this input.
For each input, determine what the output will be if Natasha changes this input.
输入格式
The first line contains a single integer $n$ ( $2 \le n \le 10^6$ ) — the number of vertices in the graph (both inputs and elements).
The $i$ -th of the next $n$ lines contains a description of $i$ -th vertex: the first word "AND", "OR", "XOR", "NOT" or "IN" (means the input of the scheme) is the vertex type. If this vertex is "IN", then the value of this input follows ( $0$ or $1$ ), otherwise follow the indices of input vertices of this element: "AND", "OR", "XOR" have $2$ inputs, whereas "NOT" has $1$ input. The vertices are numbered from one.
It is guaranteed that input data contains a correct logical scheme with an output produced by the vertex $1$ .
The $i$ -th of the next $n$ lines contains a description of $i$ -th vertex: the first word "AND", "OR", "XOR", "NOT" or "IN" (means the input of the scheme) is the vertex type. If this vertex is "IN", then the value of this input follows ( $0$ or $1$ ), otherwise follow the indices of input vertices of this element: "AND", "OR", "XOR" have $2$ inputs, whereas "NOT" has $1$ input. The vertices are numbered from one.
It is guaranteed that input data contains a correct logical scheme with an output produced by the vertex $1$ .
输出格式
Print a string of characters '0' and '1' (without quotes) — answers to the problem for each input in the ascending order of their vertex indices.
输入输出样例
输入 #1
10 AND 9 4 IN 1 IN 1 XOR 6 5 AND 3 7 IN 0 NOT 10 IN 1 IN 1 AND 2 8
输出 #1
10110
The original scheme from the example (before the input is changed):

Green indicates bits '1', yellow indicates bits '0'.
If Natasha changes the input bit $2$ to $0$ , then the output will be $1$ .
If Natasha changes the input bit $3$ to $0$ , then the output will be $0$ .
If Natasha changes the input bit $6$ to $1$ , then the output will be $1$ .
If Natasha changes the input bit $8$ to $0$ , then the output will be $1$ .
If Natasha changes the input bit $9$ to $0$ , then the output will be $0$ .

Green indicates bits '1', yellow indicates bits '0'.
If Natasha changes the input bit $2$ to $0$ , then the output will be $1$ .
If Natasha changes the input bit $3$ to $0$ , then the output will be $0$ .
If Natasha changes the input bit $6$ to $1$ , then the output will be $1$ .
If Natasha changes the input bit $8$ to $0$ , then the output will be $1$ .
If Natasha changes the input bit $9$ to $0$ , then the output will be $0$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted