CF1062F.Upgrading Cities
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
There are n cities in the kingdom X , numbered from 1 through n . People travel between cities by some one-way roads. As a passenger, JATC finds it weird that from any city u , he can't start a trip in it and then return back to it using the roads of the kingdom. That is, the kingdom can be viewed as an acyclic graph.
Being annoyed by the traveling system, JATC decides to meet the king and ask him to do something. In response, the king says that he will upgrade some cities to make it easier to travel. Because of the budget, the king will only upgrade those cities that are important or semi-important. A city u is called important if for every city v=u , there is either a path from u to v or a path from v to u . A city u is called semi-important if it is not important and we can destroy exactly one city v=u so that u becomes important.
The king will start to act as soon as he finds out all those cities. Please help him to speed up the process.
输入格式
The first line of the input contains two integers n and m ( 2≤n≤300000 , 1≤m≤300000 ) — the number of cities and the number of one-way roads.
Next m lines describe the road system of the kingdom. Each of them contains two integers ui and vi ( 1≤ui,vi≤n , ui=vi ), denoting one-way road from ui to vi .
It is guaranteed, that the kingdoms' roads make an acyclic graph, which doesn't contain multiple edges and self-loops.
输出格式
Print a single integer — the number of cities that the king has to upgrade.
输入输出样例
输入#1
7 7 1 2 2 3 3 4 4 7 2 5 5 4 6 4
输出#1
4
输入#2
6 7 1 2 2 3 3 4 1 5 5 3 2 6 6 4
输出#2
4
说明/提示
In the first example:
- Starting at the city 1 we can reach all the other cities, except for the city 6 . Also, from the city 6 we cannot reach the city 1 . Therefore, if we destroy the city 6 then the city 1 will become important. So 1 is a semi-important city.
- For city 2 , the set of cities that cannot reach 2 and cannot be reached by 2 is {6} . Therefore, destroying city 6 will make the city 2 important. So city 2 is also semi-important.
- For city 3 , the set is {5,6} . As you can see, destroying either city 5 or 6 will not make the city 3 important. Therefore, it is neither important nor semi-important.
- For city 4 , the set is empty. So 4 is an important city.
- The set for city 5 is {3,6} and the set for city 6 is {3,5} . Similarly to city 3 , both of them are not important nor semi-important.
- The city 7 is important since we can reach it from all other cities.
So we have two important cities ( 4 and 7 ) and two semi-important cities ( 1 and 2 ).In the second example, the important cities are 1 and 4 . The semi-important cities are 2 and 3 .