A11967 | Reachability from the Capital
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
There are $n$ cities and $m$ roads in Berland. Each road connects a pair of cities. The roads in Berland are one-way.
What is the minimum number of new roads that need to be built to make all the cities reachable from the capital?
New roads will also be one-way.
What is the minimum number of new roads that need to be built to make all the cities reachable from the capital?
New roads will also be one-way.
输入格式
The first line of input consists of three integers $n$ , $m$ and $s$ ( $1 \le n \le 5000, 0 \le m \le 5000, 1 \le s \le n$ ) — the number of cities, the number of roads and the index of the capital. Cities are indexed from $1$ to $n$ .
The following $m$ lines contain roads: road $i$ is given as a pair of cities $u_i$ , $v_i$ ( $1 \le u_i, v_i \le n$ , $u_i \ne v_i$ ). For each pair of cities $(u, v)$ , there can be at most one road from $u$ to $v$ . Roads in opposite directions between a pair of cities are allowed (i.e. from $u$ to $v$ and from $v$ to $u$ ).
The following $m$ lines contain roads: road $i$ is given as a pair of cities $u_i$ , $v_i$ ( $1 \le u_i, v_i \le n$ , $u_i \ne v_i$ ). For each pair of cities $(u, v)$ , there can be at most one road from $u$ to $v$ . Roads in opposite directions between a pair of cities are allowed (i.e. from $u$ to $v$ and from $v$ to $u$ ).
输出格式
Print one integer — the minimum number of extra roads needed to make all the cities reachable from city $s$ . If all the cities are already reachable from $s$ , print 0.
输入输出样例
输入 #1
9 9 1 1 2 1 3 2 3 1 5 5 6 6 1 1 8 9 8 7 1
输出 #1
3
输入 #2
5 4 5 1 2 2 3 3 4 4 1
输出 #2
1
The first example is illustrated by the following:
For example, you can add roads ( $6, 4$ ), ( $7, 9$ ), ( $1, 7$ ) to make all the cities reachable from $s = 1$ .
The second example is illustrated by the following:
In this example, you can add any one of the roads ( $5, 1$ ), ( $5, 2$ ), ( $5, 3$ ), ( $5, 4$ ) to make all the cities reachable from $s = 5$ .
For example, you can add roads ( $6, 4$ ), ( $7, 9$ ), ( $1, 7$ ) to make all the cities reachable from $s = 1$ .
The second example is illustrated by the following:
In this example, you can add any one of the roads ( $5, 1$ ), ( $5, 2$ ), ( $5, 3$ ), ( $5, 4$ ) to make all the cities reachable from $s = 5$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted