6913.Reachable Nodes

Time Limit: 1s Memory Limit: 512MB

A directed acyclic graph consists of $n$ nodes and $m$ edges. The nodes are numbered $1,2,\dots,n$ .

Calculate for each node the number of nodes you can reach from that node (including the node itself).

Input Format(From the terminal/stdin)

The first input line has two integers $n$ and $m$ : the number of nodes and edges.

Then there are $m$ lines describing the edges. Each line has two distinct integers $a$ and $b$ : there is an edge from node $a$ to node $b$ .

  • $1 \le n \le 5 \cdot 10^4$
  • $1 \le m \le 10^5$

Output Format(To the terminal/stdout)

Print $n$ integers: for each node the number of reachable nodes.

Sample Input

Copy
5 6
1 2
1 3
1 4
2 3
3 5
4 5
 · \n
 · \n
 · \n
 · \n
 · \n
 · \n
 · \n

Sample Output

Copy
5 3 2 2 1
 · · · · \n
Source: CSES, Advanced Techniques, 2138

Submit

请先 登录

© 2025 FAQs