1387. Gates

单点时限: 2.0 sec

内存限制: 256 MB

Let us consider a circuit consisting of n gates. The gates are numbered from 0 to n-1. Each gate has a certain number of inputs and exaclty one output. Each of them (inputs and outputs) may be in either one of the states 0, 1 or 1/2. Each input is connected to exactly one output of some gate. Input’s state equals the state of the output it is connected to. Each output may be connected to an aribtrary number of inputs. The gates with numbers 0 i 1 are special — they don’t have any input at all while their outputs are always in the following states: 0 for a gate with a number 0, 1 for a gate with a number 1. We say that the state of the output of a gate (in short: gate’s state) is “valid”, if:

a) it equals 0 and the gate has more inputs in state 0 than in state 1.

b) it equals 1/2 and the gate has the same number of inputs in state 0 as in state 1.

c) it equals 1 and the gate has more inputs in state 1 than it has in state 0.

d) the gate is special, i.e. it’s number is 0 or 1, and its state is 0 or 1 respectively.

We say that a circuit’s state is “valid” if all the states of its gates are valid. We say that a gate’s state is “fixed” if the gate is in the same state in all circuit’s valid states.

Task

Write a programme that:

Reads the circuit’s description from the standard input.

For each gate checks if it’s state is fixed, and determines it, if so.

Writes the determined states of gates to the standard output.

输入格式

The first line of the standard input contains the number of gates n, 2 <= n <= 10,000. The following n-2 lines contain the descriptions of gates’ connections - line no. i describes inputs of the gate no. i. There is the number k_i of inputs of this gate, followed by k_i numbers of gates, k_i >= 1. Those are the numbers of gates whose outputs are connected to successive inputs of the gate’s no. i. Numbers in each line are separated by single spaces. The total number of all inputs of all gates does not exceed 200,000.

输出格式

Your programme should write n lines to the standard output. Depending on the state of gate no. i-1, ist line should contain:

0 — if it is determined and equals 0,

1/2 — if it is determined and equals 1/2,

1 — if it is determined and equals 1,

? (question mark) — if it is not determined.

样例

Input
5
2 0 1
2 4 2
2 2 4
Output
0
1
1/2
?
?

1 人解决,1 人已尝试。

3 份提交通过,共有 3 份提交。

8.9 EMB 奖励。

创建: 16 年,9 月前.

修改: 6 年,8 月前.

最后提交: 14 年前.

来源: POI

题目标签