CF909E.Coprocessor

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

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 NN ( 1<=N<=1051<=N<=10^{5} ) — the total number of tasks given, and MM ( 0<=M<=1050<=M<=10^{5} ) — the total number of dependencies between tasks.

The next line contains NN space-separated integers . If Ei=0E_{i}=0 , task ii can only be executed on the main processor, otherwise it can only be executed on the coprocessor.

The next MM lines describe the dependencies between tasks. Each line contains two space-separated integers T1T_{1} and T2T_{2} and means that task T1T_{1} depends on task T2T_{2} ( T1T2T_{1}≠T_{2} ). Tasks are indexed from 00 to N1N-1 . All MM pairs (T1,T2)(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
    

说明/提示

In the first test, tasks 1 and 3 can only be executed on the coprocessor. The dependency graph is linear, so the tasks must be executed in order 3 -> 2 -> 1 -> 0. You have to call coprocessor twice: first you call it for task 3, then you execute task 2 on the main processor, then you call it for for task 1, and finally you execute task 0 on the main processor.

In the second test, tasks 0, 1 and 2 can only be executed on the coprocessor. Tasks 1 and 2 have no dependencies, and task 0 depends on tasks 1 and 2, so all three tasks 0, 1 and 2 can be sent in one coprocessor call. After that task 3 is executed on the main processor.

首页