Codeforces 711D Directed Roads - 组合数学

ZS the Coder and Chris the Baboon has explored Udayland for quite some time. They realize that it consists of n towns numbered from1 to n.

There are n directed roads in the Udayland. i-th of them goes from town i to some other town ai (ai ≠ 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 A1, A2, ..., Ak (k > 1) such that for every 1 ≤ i < k there is a road from town Ai to town Ai + 1 and another road from town Ak to town A1. 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 2n 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.

Input

The first line of the input contains single integer n (2 ≤ n ≤ 2·105) — the number of towns in Udayland.

The next line contains n integers a1, a2, ..., an (1 ≤ ai ≤ n, ai ≠ i), ai denotes a road going from town i to town ai.

Output

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 109 + 7.

Examples
input
3
2 3 1
output
6
input
4
2 1 1 1
output
8
input
5
2 4 2 5 3
output
28
Note

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.


题目大意

  给定一个有向图,每个点的出度为1。有一种操作可以将一条边的方向翻转,问有多少种不同的操作方案使得操作后图中不存在点数大于1的强连通分量。

  因为图很特殊,所以有比较特殊的计算方法。

  容易发现,对于已经存在的强连通分量,只有全部翻转中间的边和什么都不做的量两种方案不可行,其他都可行。

  对于不在强连通分量内的边,可翻转也可以不翻转。

  然后用dfs找环,用乘法原理乘一乘就好。

Code

 1 /**
 2  * Codeforces
 3  * Problem#711D
 4  * Accepted
 5  * Time: 62ms
 6  * Memory: 4376k
 7  */
 8 #include <bits/stdc++.h>
 9 using namespace std;
10 
11 const int M = 1e9 + 7;
12 
13 int n;
14 int cnt = 0;
15 int ric = 0;
16 int *suf;
17 int *vid;
18 int *bel;
19 
20 int qpow(int a, int pos) {
21     int rt = 1, pa = a;
22     for (; pos; pos >>= 1, pa = pa * 1ll * pa % M)
23         if (pos & 1)
24             rt = rt * 1ll * pa % M;
25     return rt;
26 }
27 
28 inline void init() {
29     scanf("%d", &n);
30     suf = new int[(n + 1)];
31     vid = new int[(n + 1)];
32     bel = new int[(n + 1)];
33     for (int i = 1; i <= n; i++)
34         scanf("%d", suf + i);
35     memset(vid, 0, sizeof(int) * (n + 1));
36     memset(bel, 0, sizeof(int) * (n + 1));
37 }
38 
39 int dfs(int node, int id) {
40     vid[node] = ++cnt;
41     bel[node] = id;
42     int e = suf[node];
43     if (vid[e])
44         return (bel[e] == id) ? (vid[node] - vid[e] + 1) : (0); 
45     return dfs(e, id);
46 }
47 
48 int ans = 1;
49 inline void solve() {
50     for (int i = 1, s; i <= n; i++)
51         if (!vid[i]) {
52             s = dfs(i, i);
53             if(s)
54                 ans = (ans * 1ll * ((qpow(2, s) + M - 2) % M)) % M;
55             ric += s;
56         }
57     ans = (ans * 1ll * qpow(2, n - ric)) % M;
58     printf("%d\n", ans);
59 }
60 
61 int main() {
62     init();
63     solve();
64     return 0;
65 }

 

posted @ 2018-02-05 15:43  阿波罗2003  阅读(225)  评论(0编辑  收藏  举报