CF429A.Xor-tree

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Iahub is very proud of his recent discovery, propagating trees. Right now, he invented a new tree, called xor-tree. After this new revolutionary discovery, he invented a game for kids which uses xor-trees.

The game is played on a tree having nn nodes, numbered from 11 to nn . Each node ii has an initial value initiinit_{i} , which is either 0 or 1. The root of the tree is node 1.

One can perform several (possibly, zero) operations on the tree during the game. The only available type of operation is to pick a node xx . Right after someone has picked node xx , the value of node xx flips, the values of sons of xx remain the same, the values of sons of sons of xx flips, the values of sons of sons of sons of xx remain the same and so on.

The goal of the game is to get each node ii to have value goaligoal_{i} , which can also be only 0 or 1. You need to reach the goal of the game by using minimum number of operations.

输入格式

The first line contains an integer nn ( 1<=n<=1051<=n<=10^{5} ). Each of the next n1n-1 lines contains two integers uiu_{i} and viv_{i} ( 1<=ui,vi<=n1<=u_{i},v_{i}<=n ; uiviu_{i}≠v_{i} ) meaning there is an edge between nodes uiu_{i} and viv_{i} .

The next line contains nn integer numbers, the ii -th of them corresponds to initiinit_{i} ( initiinit_{i} is either 0 or 1). The following line also contains nn integer numbers, the ii -th number corresponds to goaligoal_{i} ( goaligoal_{i} is either 0 or 1).

输出格式

In the first line output an integer number cntcnt , representing the minimal number of operations you perform. Each of the next cntcnt lines should contain an integer xix_{i} , representing that you pick a node xix_{i} .

输入输出样例

  • 输入#1

    10
    2 1
    3 1
    4 2
    5 1
    6 2
    7 5
    8 6
    9 8
    10 5
    1 0 1 1 0 1 0 1 0 1
    1 0 1 0 0 1 1 1 0 1
    

    输出#1

    2
    4
    7
    
首页