题库练习 Monsters
← 上一题 下一题 →

A15783 | Monsters

时间限制1s
内存限制256MB
通过 / 提交0/0

题目描述

There is an undirected graph with $n$ vertices and $m$ edges. Initially, for each vertex $i$ , there is a monster with danger $a_{i}$ on that vertex. For a monster with danger $a_{i}$ , you can defeat it if and only if you have defeated at least $a_{i}$ other monsters before.

Now you want to defeat all the monsters. First, you choose some vertex $s$ and defeat the monster on that vertex (since you haven't defeated any monsters before, $a_{s}$ has to be $0$ ). Then, you can move through the edges. If you want to move from vertex $u$ to vertex $v$ , then the following must hold: either the monster on vertex $v$ has been defeated before, or you can defeat it now. For the second case, you defeat the monster on vertex $v$ and reach vertex $v$ .

You can pass the vertices and the edges any number of times. Determine whether you can defeat all the monsters or not.

输入格式

Each test contains multiple test cases. The first line contains a single integer $t$ ( $1 \le t \le 10^4$ ) — the number of test cases. Their description follows.

The first line of each test case contains two integers $n$ , $m$ ( $1 \le n, m \le 2 \cdot 10^5$ ) — the number of vertices and edges in the graph respectively.

The second line of each test case contains $n$ integers $a_{1}, a_{2}, \ldots, a_{n}$ ( $0 \le a_{i} \le n$ ) — the dangers of monsters on corresponding vertices.

For the following $m$ lines, each line contains two integers $u$ , $v$ ( $1 \le u, v \le n$ ), describing an edge connecting vertex $u$ and vertex $v$ . It is guaranteed that there are no multi-edges or self-loops in the graph.

It is guaranteed that both the sum of $n$ and the sum of $m$ over all test cases do not exceed $2 \cdot 10^5$ .

输出格式

For each test case, output "YES" if you can defeat all the monsters, or "NO" otherwise.

You can output the answer in any case (upper or lower). For example, the strings "yEs", "yes", "Yes", and "YES" will be recognized as positive responses.

输入输出样例

输入 #1
5
4 3
2 1 0 3
1 2
2 3
3 4
6 6
0 1 2 3 0 1
1 2
2 3
3 4
4 5
4 6
5 6
4 3
0 1 2 0
1 2
2 3
1 3
4 6
1 1 1 0
1 2
3 2
4 3
2 4
4 1
1 3
5 5
0 1 3 2 0
1 2
2 3
3 4
4 5
3 5
输出 #1
YES
YES
NO
YES
NO
C++ 编辑器
输入
输出