A10482 | Directed Roads
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
ZS the Coder and Chris the Baboon has explored Udayland for quite some time. They realize that it consists of $n$ towns numbered from $1$ to $n$ .
There are $n$ directed roads in the Udayland. $i$ -th of them goes from town $i$ to some other town $a_{i}$ ( $a_{i}≠i$ ). ZS the Coder can flip the direction of any road in Udayland, i.e. if it goes from town $A$ to town $B$ before the flip, it will go from town $B$ to town $A$ after.
ZS the Coder considers the roads in the Udayland confusing, if there is a sequence of distinct towns $A_{1},A_{2},...,A_{k}$ ( $k>1$ ) such that for every $1<=i<k$ there is a road from town $A_{i}$ to town $A_{i+1}$ and another road from town $A_{k}$ to town $A_{1}$ . In other words, the roads are confusing if some of them form a directed cycle of some towns.
Now ZS the Coder wonders how many sets of roads (there are $2^{n}$ variants) in initial configuration can he choose to flip such that after flipping each road in the set exactly once, the resulting network will not be confusing.
Note that it is allowed that after the flipping there are more than one directed road from some town and possibly some towns with no roads leading out of it, or multiple roads between any pair of cities.
There are $n$ directed roads in the Udayland. $i$ -th of them goes from town $i$ to some other town $a_{i}$ ( $a_{i}≠i$ ). ZS the Coder can flip the direction of any road in Udayland, i.e. if it goes from town $A$ to town $B$ before the flip, it will go from town $B$ to town $A$ after.
ZS the Coder considers the roads in the Udayland confusing, if there is a sequence of distinct towns $A_{1},A_{2},...,A_{k}$ ( $k>1$ ) such that for every $1<=i<k$ there is a road from town $A_{i}$ to town $A_{i+1}$ and another road from town $A_{k}$ to town $A_{1}$ . In other words, the roads are confusing if some of them form a directed cycle of some towns.
Now ZS the Coder wonders how many sets of roads (there are $2^{n}$ variants) in initial configuration can he choose to flip such that after flipping each road in the set exactly once, the resulting network will not be confusing.
Note that it is allowed that after the flipping there are more than one directed road from some town and possibly some towns with no roads leading out of it, or multiple roads between any pair of cities.
输入格式
The first line of the input contains single integer $n$ ( $2<=n<=2·10^{5}$ ) — the number of towns in Udayland.
The next line contains $n$ integers $a_{1},a_{2},...,a_{n}$ $(1<=a_{i}<=n,a_{i}≠i)$ , $a_{i}$ denotes a road going from town $i$ to town $a_{i}$ .
The next line contains $n$ integers $a_{1},a_{2},...,a_{n}$ $(1<=a_{i}<=n,a_{i}≠i)$ , $a_{i}$ denotes a road going from town $i$ to town $a_{i}$ .
输出格式
Print a single integer — the number of ways to flip some set of the roads so that the resulting whole set of all roads is not confusing. Since this number may be too large, print the answer modulo $10^{9}+7$ .
输入输出样例
输入 #1
3 2 3 1
输出 #1
6
输入 #2
4 2 1 1 1
输出 #2
8
输入 #3
5 2 4 2 5 3
输出 #3
28
Consider the first sample case. There are $3$ towns and $3$ roads. The towns are numbered from $1$ to $3$ and the roads are , ,  initially. Number the roads $1$ to $3$ in this order.
The sets of roads that ZS the Coder can flip (to make them not confusing) are ${1},{2},{3},{1,2},{1,3},{2,3}$ . Note that the empty set is invalid because if no roads are flipped, then towns $1,2,3$ is form a directed cycle, so it is confusing. Similarly, flipping all roads is confusing too. Thus, there are a total of $6$ possible sets ZS the Coder can flip.
The sample image shows all possible ways of orienting the roads from the first sample such that the network is not confusing.

The sets of roads that ZS the Coder can flip (to make them not confusing) are ${1},{2},{3},{1,2},{1,3},{2,3}$ . Note that the empty set is invalid because if no roads are flipped, then towns $1,2,3$ is form a directed cycle, so it is confusing. Similarly, flipping all roads is confusing too. Thus, there are a total of $6$ possible sets ZS the Coder can flip.
The sample image shows all possible ways of orienting the roads from the first sample such that the network is not confusing.

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