CF840B.Leha and another game about graph

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Leha plays a computer game, where is on each level is given a connected graph with nn vertices and mm edges. Graph can contain multiple edges, but can not contain self loops. Each vertex has an integer did_{i} , which can be equal to 00 , 11 or 1-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, did_{i} = - 1 or it's degree modulo 2 is equal to did_{i} . 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.

输入格式

The first line contains two integers nn , mm ( 1<=n<=31051<=n<=3·10^{5} , n1<=m<=3105n-1<=m<=3·10^{5} ) — number of vertices and edges.

The second line contains nn integers d1,d2,...,dnd_{1},d_{2},...,d_{n} ( 1<=di<=1-1<=d_{i}<=1 ) — numbers on the vertices.

Each of the next mm lines contains two integers uu and vv ( 1<=u,v<=n1<=u,v<=n ) — edges. It's guaranteed, that graph in the input is connected.

输出格式

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

输入输出样例

  • 输入#1

    1 0
    1
    

    输出#1

    -1
    
  • 输入#2

    4 5
    0 0 0 -1
    1 2
    2 3
    3 4
    1 4
    2 4
    

    输出#2

    0
    
  • 输入#3

    2 1
    1 1
    1 2
    

    输出#3

    1
    1
    
  • 输入#4

    3 3
    0 -1 1
    1 2
    2 3
    1 3
    

    输出#4

    1
    2
    

说明/提示

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

首页