目录

CF1388C-Uncle Bogdan and Country Happiness

CF1388C-Uncle Bogdan and Country Happiness

题目:

题目描述:

Uncle Bogdan is in captain Flint’s crew for a long time and sometimes gets nostalgic for his homeland. Today he told you how his country introduced a happiness index.

There are $ n $ cities and $ n−1 $ undirected roads connecting pairs of cities. Citizens of any city can reach any other city traveling by these roads. Cities are numbered from $ 1 $ to $ n $ and the city $ 1 $ is a capital. In other words, the country has a tree structure.

There are $ m $ citizens living in the country. A $ p_i $ people live in the $ i $ -th city but all of them are working in the capital. At evening all citizens return to their home cities using the shortest paths.

Every person has its own mood: somebody leaves his workplace in good mood but somebody are already in bad mood. Moreover any person can ruin his mood on the way to the hometown. If person is in bad mood he won’t improve it.

Happiness detectors are installed in each city to monitor the happiness of each person who visits the city. The detector in the $ i $ -th city calculates a happiness index $ h_i $ as the number of people in good mood minus the number of people in bad mood. Let’s say for the simplicity that mood of a person doesn’t change inside the city.

Happiness detector is still in development, so there is a probability of a mistake in judging a person’s happiness. One late evening, when all citizens successfully returned home, the government asked uncle Bogdan (the best programmer of the country) to check the correctness of the collected happiness indexes.

Uncle Bogdan successfully solved the problem. Can you do the same?

More formally, You need to check: “Is it possible that, after all people return home, for each city $ i $ the happiness index will be equal exactly to $ h_i $ “.

输入格式:

The first line contains a single integer $ t $ ( $ 1 \le t \le 10000 $ ) — the number of test cases.

The first line of each test case contains two integers $ n $ and $ m $ ( $ 1 \le n \le 10^5 $ ; $ 0 \le m \le 10^9 $ ) — the number of cities and citizens.

The second line of each test case contains $ n $ integers $ p_1, p_2, \ldots, p_{n} $ ( $ 0 \le p_i \le m $ ; $ p_1 + p_2 + \ldots + p_{n} = m $ ), where $ p_i $ is the number of people living in the $ i $ -th city.

The third line contains $ n $ integers $ h_1, h_2, \ldots, h_{n} $ ( $ -10^9 \le h_i \le 10^9 $ ), where $ h_i $ is the calculated happiness index of the $ i $ -th city.

Next $ n − 1 $ lines contain description of the roads, one per line. Each line contains two integers $ x_i $ and $ y_i $ ( $ 1 \le x_i, y_i \le n $ ; $ x_i \neq y_i $ ), where $ x_i $ and $ y_i $ are cities connected by the $ i $ -th road.

It’s guaranteed that the sum of $ n $ from all test cases doesn’t exceed $ 2 \cdot 10^5 $ .

输出格式:

For each test case, print YES, if the collected data is correct, or NO — otherwise. You can print characters in YES or NO in any case.

样例:

样例输入 1:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
2
7 4
1 0 1 1 0 1 0
4 0 0 -1 0 -1 0
1 2
1 3
1 4
3 5
3 6
3 7
5 11
1 2 5 2 1
-11 -2 -6 -2 -1
1 2
1 3
1 4
3 5

样例输出 1:

1
2
YES
YES

样例输入 2:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
2
4 4
1 1 1 1
4 1 -3 -1
1 2
1 3
1 4
3 13
3 3 7
13 1 4
1 2
1 3

样例输出 2:

1
2
NO
NO

思路:

实现:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
#include "ybwhead/ios.h"
const int maxn = 2e5 + 10;
long long p[maxn], h[maxn];
int head[maxn];
int tot, ans;
struct edge
{
    int v, nxt;
} e[maxn << 1];
void __ADD(int u, int v)
{
    e[++tot].v = v;
    e[tot].nxt = head[u];
    head[u] = tot;
}
void add(int u, int v)
{
    __ADD(u, v);
    __ADD(v, u);
}
int n, m;
long long f[maxn], f1[maxn];
void dfs(int u, int fa)
{
    for (int i = head[u]; i; i = e[i].nxt)
    {
        int v = e[i].v;
        if (v == fa)
            continue;
        dfs(v, u);
        if (!ans)
            return;
        f[u] += f[v];
        f1[u] += f1[v];
    }
    f[u] += p[u];
    if (2 * f1[u] - f[u] > h[u])
    {
        ans = 0;
        return;
    }
    if ((f[u] + h[u]) % 2 == 0)
    {
        f1[u] = f[u] + h[u];
        f1[u] >>= 1;
    }
    else
    {
        ans = 0;
        return;
    }
    if (f1[u] > f[u])
    {
        ans = 0;
        return;
    }
}
int main()
{
    int TTT;
    yin >> TTT;
    while (TTT--)
    {
        yin >> n >> m;
        for (int i = 1; i <= n; i++)
            head[i] = 0, f[i] = f1[i] = 0;
        tot = 0;
        for (int i = 1; i <= n; i++)
            yin >> p[i];
        for (int i = 1; i <= n; i++)
            yin >> h[i];
        for (int i = 1; i < n; i++)
        {
            int a, b;
            yin >> a >> b;
            add(a, b);
        }
        ans = 1;
        dfs(1, 0);
        if (ans)
            puts("YES");
        else
            puts("NO");
    }
    return 0;
}