1679.Leha and another game about graph

Time Limit: 1s Memory Limit: 256MB

Leha plays a computer game, where is on each level is given a connected graph with n vertices and m edges. Graph can contain multiple edges, but can not contain self loops. Each vertex has an integer di, which can be equal to 0, 1 or -1. To pass the level, he needs to find a «good» subset of edges of the graph or say, that it doesn't exist. Subset is called «good», if by by leaving only edges from this subset in the original graph, we obtain the following: for every vertex i, di=-1 or it's degree modulo 2 is equal to di. Leha wants to pass the game as soon as possible and ask you to help him. In case of multiple correct answers, print any of them.

Input Format(From the terminal/stdin)

The first line contains two integers n, m (1 \le n \le 3 \cdot 105, n-1 \le m \le 3 \cdot 105) - number of vertices and edges.

The second line contains n integers d1,d2,...,dn (-1 \le di \le 1) - numbers on the vertices.

Each of the next m lines contains two integers u and v (1 \le u,v \le n) - edges. It's guaranteed, that graph in the input is connected.

Output Format(To the terminal/stdout)

Print -1 in a single line, if solution doesn't exist. Otherwise in the first line k - number of edges in a subset. In the next k lines indexes of edges. Edges are numerated in order as they are given in the input, starting from 1.

Sample Input 1

Copy
1 0
1
 · \n
 \n

Sample Output 1

Copy
-1
  \n

Sample Input 2

Copy
4 5
0 0 0 -1
1 2
2 3
3 4
1 4
2 4
 · \n
 · · ·  \n
 · \n
 · \n
 · \n
 · \n
 · \n

Sample Output 2

Copy
0
 \n

Sample Input 3

Copy
2 1
1 1
1 2
 · \n
 · \n
 · \n

Sample Output 3

Copy
1
1
 \n
 \n

Sample Input 4

Copy
3 3
0 -1 1
1 2
2 3
1 3
 · \n
 ·  · \n
 · \n
 · \n
 · \n

Sample Output 4

Copy
1
2
 \n
 \n

Hints

In the first sample we have single vertex without edges. It's degree is 0 and we can not get 1.

Submit

请先 登录

© 2025 FAQs