Pipes

No attempts yetTime limit1sMemory limit128 MB

Problem

The city of Hotham is once again attacked by its most prominent villain, the Jester. This time his target is Hotham's water supply. The fresh water of Hotham is stored in $N$ reservoirs, which are connected by a set of $M$ pipes. There is at least one path (potentially consisting of several pipes) from any reservoir to any other reservoir. Moreover, every pipe connects two different reservoirs, and there is at most one pipe between any pair of reservoirs.

The Jester has breached some of the pipes and has been draining water from them. Following his playful nature, the Jester ensured that the water drained from any one pipe amounts to an even number of cubic meters per second ($\text{m}^3/\text{s}$). If $2d\ \text{m}^3/\text{s}$ of water is drained from a pipe joining reservoirs $u$ and $v$, then $u$ and $v$ lose $d\ \text{m}^3/\text{s}$ of water each.

To make matters more confusing, the Jester actually pumps water into some of the breached pipes instead of draining from them. Again, the water pumped into any one pipe is an even number of $\text{m}^3/\text{s}$. If $2p\ \text{m}^3/\text{s}$ of water is pumped into a pipe joining reservoirs $u$ and $v$, then $u$ and $v$ gain $p\ \text{m}^3/\text{s}$ of water each. The net change of water volume in each reservoir is the total sum of gains and losses acquired from the pipes connected to it. Formally, if a reservoir is connected to pipes from which $2d_1, 2d_2, \dots, 2d_a\ \text{m}^3/\text{s}$ of water is drained and to pipes into which $2p_1, 2p_2, \dots, 2p_b\ \text{m}^3/\text{s}$ of water is pumped, then the net change of water volume in this reservoir is $p_1 + p_2 + \dots + p_b - d_1 - d_2 - \dots - d_a$.

The mayor of Hotham has installed sensors in the reservoirs, but not in the pipes. Therefore, he can observe the net change of water in each reservoir but does not know how much water is drained from or pumped into each pipe.

Your task is to write a program that helps the mayor. Given full information about the reservoir network and the net changes in each reservoir, your program should decide if this information is enough to uniquely determine the Jester's plan. The plan can be determined uniquely if there is exactly one possibility for how much water is drained from or pumped into each pipe. Note that these amounts of water need not be the same for all pipes. If there is exactly one possibility, your program should print it.

Input

The first line of the input contains two integers: $N$, the number of reservoirs in Hotham, and $M$, the number of pipes. The following $N$ lines contain an integer $c_i$ each: the net change in reservoir $i$ ($1 \le i \le N$). Line $i$ of these $N$ lines contains $c_i$. The following $M$ lines contain two integers $u_i$ and $v_i$ each ($1 \le u_i, v_i \le N$). Each such line indicates that there is a pipe between reservoirs $u_i$ and $v_i$. Line $i$ of these $M$ lines contains $u_i$ and $v_i$.

The input always describes a set of reservoir changes that can be realized by the Jester.

Output

If the Jester's plan cannot be determined uniquely, your program should output a single line containing $0$. Otherwise, your program should output $M$ lines with one integer $x_i$ each ($1 \le i \le M$). Line $i$ should contain $x_i$. If the Jester drains $d_i\ \text{m}^3/\text{s}$ of water from the pipe between $u_i$ and $v_i$, let $x_i = -d_i$. If the Jester pumps $p_i\ \text{m}^3/\text{s}$ of water into the pipe between $u_i$ and $v_i$, let $x_i = p_i$. If the Jester does not add or remove water from the pipe between $u_i$ and $v_i$, let $x_i = 0$.

Constraints

  • $1 \le N \le 100000$
  • $1 \le M \le 500000$
  • $-10^9 \le c_i \le 10^9$
  • If the Jester's plan can be determined uniquely, $-10^9 \le x_i \le 10^9$.