A14980 | Remove Directed Edges
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
You are given a directed acyclic graph, consisting of $n$ vertices and $m$ edges. The vertices are numbered from $1$ to $n$ . There are no multiple edges and self-loops.
Let $\mathit{in}_v$ be the number of incoming edges (indegree) and $\mathit{out}_v$ be the number of outgoing edges (outdegree) of vertex $v$ .
You are asked to remove some edges from the graph. Let the new degrees be $\mathit{in'}_v$ and $\mathit{out'}_v$ .
You are only allowed to remove the edges if the following conditions hold for every vertex $v$ :
- $\mathit{in'}_v < \mathit{in}_v$ or $\mathit{in'}_v = \mathit{in}_v = 0$ ;
- $\mathit{out'}_v < \mathit{out}_v$ or $\mathit{out'}_v = \mathit{out}_v = 0$ .
Let's call a set of vertices $S$ cute if for each pair of vertices $v$ and $u$ ( $v \neq u$ ) such that $v \in S$ and $u \in S$ , there exists a path either from $v$ to $u$ or from $u$ to $v$ over the non-removed edges.
What is the maximum possible size of a cute set $S$ after you remove some edges from the graph and both indegrees and outdegrees of all vertices either decrease or remain equal to $0$ ?
Let $\mathit{in}_v$ be the number of incoming edges (indegree) and $\mathit{out}_v$ be the number of outgoing edges (outdegree) of vertex $v$ .
You are asked to remove some edges from the graph. Let the new degrees be $\mathit{in'}_v$ and $\mathit{out'}_v$ .
You are only allowed to remove the edges if the following conditions hold for every vertex $v$ :
- $\mathit{in'}_v < \mathit{in}_v$ or $\mathit{in'}_v = \mathit{in}_v = 0$ ;
- $\mathit{out'}_v < \mathit{out}_v$ or $\mathit{out'}_v = \mathit{out}_v = 0$ .
Let's call a set of vertices $S$ cute if for each pair of vertices $v$ and $u$ ( $v \neq u$ ) such that $v \in S$ and $u \in S$ , there exists a path either from $v$ to $u$ or from $u$ to $v$ over the non-removed edges.
What is the maximum possible size of a cute set $S$ after you remove some edges from the graph and both indegrees and outdegrees of all vertices either decrease or remain equal to $0$ ?
输入格式
The first line contains two integers $n$ and $m$ ( $1 \le n \le 2 \cdot 10^5$ ; $0 \le m \le 2 \cdot 10^5$ ) — the number of vertices and the number of edges of the graph.
Each of the next $m$ lines contains two integers $v$ and $u$ ( $1 \le v, u \le n$ ; $v \neq u$ ) — the description of an edge.
The given edges form a valid directed acyclic graph. There are no multiple edges.
Each of the next $m$ lines contains two integers $v$ and $u$ ( $1 \le v, u \le n$ ; $v \neq u$ ) — the description of an edge.
The given edges form a valid directed acyclic graph. There are no multiple edges.
输出格式
Print a single integer — the maximum possible size of a cute set $S$ after you remove some edges from the graph and both indegrees and outdegrees of all vertices either decrease or remain equal to $0$ .
输入输出样例
输入 #1
3 3 1 2 2 3 1 3
输出 #1
2
输入 #2
5 0
输出 #2
1
输入 #3
7 8 7 1 1 3 6 2 2 3 7 2 2 4 7 3 6 3
输出 #3
3
In the first example, you can remove edges $(1, 2)$ and $(2, 3)$ . $\mathit{in} = [0, 1, 2]$ , $\mathit{out} = [2, 1, 0]$ . $\mathit{in'} = [0, 0, 1]$ , $\mathit{out'} = [1, 0, 0]$ . You can see that for all $v$ the conditions hold. The maximum cute set $S$ is formed by vertices $1$ and $3$ . They are still connected directly by an edge, so there is a path between them.
In the second example, there are no edges. Since all $\mathit{in}_v$ and $\mathit{out}_v$ are equal to $0$ , leaving a graph with zero edges is allowed. There are $5$ cute sets, each contains a single vertex. Thus, the maximum size is $1$ .
In the third example, you can remove edges $(7, 1)$ , $(2, 4)$ , $(1, 3)$ and $(6, 2)$ . The maximum cute set will be $S = \{7, 3, 2\}$ . You can remove edge $(7, 3)$ as well, and the answer won't change.
Here is the picture of the graph from the third example:

In the second example, there are no edges. Since all $\mathit{in}_v$ and $\mathit{out}_v$ are equal to $0$ , leaving a graph with zero edges is allowed. There are $5$ cute sets, each contains a single vertex. Thus, the maximum size is $1$ .
In the third example, you can remove edges $(7, 1)$ , $(2, 4)$ , $(1, 3)$ and $(6, 2)$ . The maximum cute set will be $S = \{7, 3, 2\}$ . You can remove edge $(7, 3)$ as well, and the answer won't change.
Here is the picture of the graph from the third example:

C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted