C. Xor-tree Description 【online|Codeforces #245 (Div. 2)C. Xor-tree(DFS&&贪心】ahub 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 n nodes, numbered from 1 to n. Each node i has an initial value initi, 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 x. Right after someone has picked node x, the value of node x flips, the values of sons of x remain the same, the values of sons of sons of x flips, the values of sons of sons of sons of x remain the same and so on.
The goal of the game is to get each node i to have value goali, which can also be only 0 or 1. You need to reach the goal of the game by using minimum number of operations.
Input The first line contains an integer n (1?≤?n?≤?105). Each of the next n?-?1 lines contains two integers ui and vi (1?≤?ui,?vi?≤?n;
ui?≠?vi) meaning there is an edge between nodes ui and vi.
The next line contains n integer numbers, the i-th of them corresponds to initi (initi is either 0 or 1). The following line also contains n integer numbers, the i-th number corresponds to goali (goali is either 0 or 1).
Output In the first line output an integer number cnt, representing the minimal number of operations you perform. Each of the next cnt lines should contain an integer xi, representing that you pick a node xi.
Sample Input
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
Sample Output
2
4
7
题意
给出一棵树,有n个节点,根为1,每个节点的值不是0就是1,每次可以翻转一个节点,翻转后,当前节点值翻转,其儿子节点不变,孙子追随翻转,依次类推,求最少翻转次数,使得每个节点的值与目标结果相同。
题解:
搜根下面的点 不同就操作改变 (不影响父节点的更新)
AC代码
#include
using namespace std;
#define LL long long
#define CLR(a,b) memset(a,(b),sizeof(a))const int N = 1e5+10;
int s[N], t[N];
int vis[N];
vector v[N];
int n;
int ans;
void dfs(int x,int y,int z)
{
if(vis[x]) return;
vis[x] = 1;
if(s[x]^y != t[x]) {
vis[x] = 2;
ans ++;
y = !y;
}
for(int i = 0;
i >n;
for(int i = 0;
i <= n;
i++) v[i].clear();
int x, y;
for(int i = 1;
i < n;
i++) {
cin>>x>>y;
v[x].push_back(y);
v[y].push_back(x);
}
for(int i = 1;
i <= n;
i++) cin>>s[i];
for(int i = 1;
i <= n;
i++) cin>>t[i];
CLR(vis,0);
ans = 0;
dfs(1,0,0);
cout
推荐阅读
- 遇见蓝桥遇见你|小唐开始刷蓝桥(一)2020年第十一届C/C++ B组第二场蓝桥杯省赛真题
- codeforces B. Young Explorers
- codeforces C. Mere Array
- codeforces D. Omkar and Bed Wars
- codeforces C. Omkar and Waterslide
- codeforces B. Omkar and Infinity Clock
- codeforces B. Ternary Sequence
- 题库-CF|【Codeforces Round 370 (Div 2) E】【线段树 等比数列 区间合并】Memory and Casinos 赌场区间[l,r] l进r先出的概率
- 题库-CF|【Codeforces Round 263 (Div 2)C】【贪心 哈弗曼思维】Appleman and Toastman 每个非1size子树延展为2子树的最大权
- Codeforces|Codeforces Round #605 (Div. 3) D. Remove One Element