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

A11539 | Coprocessor

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

题目描述

You are given a program you want to execute as a set of tasks organized in a dependency graph. The dependency graph is a directed acyclic graph: each task can depend on results of one or several other tasks, and there are no directed circular dependencies between tasks. A task can only be executed if all tasks it depends on have already completed.

Some of the tasks in the graph can only be executed on a coprocessor, and the rest can only be executed on the main processor. In one coprocessor call you can send it a set of tasks which can only be executed on it. For each task of the set, all tasks on which it depends must be either already completed or be included in the set. The main processor starts the program execution and gets the results of tasks executed on the coprocessor automatically.

Find the minimal number of coprocessor calls which are necessary to execute the given program.

输入格式

The first line contains two space-separated integers $N$ ( $1<=N<=10^{5}$ ) — the total number of tasks given, and $M$ ( $0<=M<=10^{5}$ ) — the total number of dependencies between tasks.

The next line contains $N$ space-separated integers ![](/uploads/acgo/image/f5a2d52daf6b56be_74e455fc22e4.jpeg). If $E_{i}=0$ , task $i$ can only be executed on the main processor, otherwise it can only be executed on the coprocessor.

The next $M$ lines describe the dependencies between tasks. Each line contains two space-separated integers $T_{1}$ and $T_{2}$ and means that task $T_{1}$ depends on task $T_{2}$ ( $T_{1}≠T_{2}$ ). Tasks are indexed from $0$ to $N-1$ . All $M$ pairs $(T_{1},T_{2})$ are distinct. It is guaranteed that there are no circular dependencies between tasks.

输出格式

Output one line containing an integer — the minimal number of coprocessor calls necessary to execute the program.

输入输出样例

输入 #1
4 3
0 1 0 1
0 1
1 2
2 3
输出 #1
2
输入 #2
4 3
1 1 1 0
0 1
0 2
3 0
输出 #2
1
C++ 编辑器
输入
输出