天天看點

Codeforces Round #369 (Div. 2) [D] Directed RoadsDirected Roads

Directed Roads

time limit per test:2 seconds

memory limit per test:256 megabytes

input:standard input

output:standard output

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 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

Codeforces Round #369 (Div. 2) [D] Directed RoadsDirected Roads

,

Codeforces Round #369 (Div. 2) [D] Directed RoadsDirected Roads

,

Codeforces Round #369 (Div. 2) [D] Directed RoadsDirected Roads

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.

Codeforces Round #369 (Div. 2) [D] Directed RoadsDirected Roads

題意:給你一個n個點,n條有向邊的圖,你可以使任意條邊反向,但是每條邊隻能反向一次,請求出使圖不存在環的所有方案數量

仔細思考我們發現,對于一個點數為x的環,除去全部不反向和全部反向兩種情況,其他的所有方案總數為(2^x)-2種

對于不在環上的邊,無論反向還是不反向對環的存在都是沒有影響的,是以如果有y條邊不在環上,就有2^y種情況

最後将所有的情況乘起來就可以了,環的存在需要dfs預處理一下

#include<cstdio>
#include<iostream>
#define LL long long
using namespace std;
const LL maxn=2e5+5;
const LL mod=1e9+7;
LL n,NEXT[maxn],vis[maxn],tot,loops[maxn];
inline void _read(LL &x){
    char t=getchar();bool sign=true;
    while(t<'0'||t>'9')
    {if(t=='-')sign=false;t=getchar();}
    for(x=0;t>='0'&&t<='9';t=getchar())x=x*10+t-'0';
    if(!sign)x=-x;
}
LL mg(LL a,LL b,LL c){
    LL ans=1;
    a%=c;
    while(b){
        if(b&1)ans=(ans*a)%c;
        b>>=1;
        a=(a*a)%c;
    }
    return ans;
}
void find_loops(LL x){
	loops[tot]++;
	vis[x]=3;
	if(vis[NEXT[x]]==3)return ;
	find_loops(NEXT[x]);
}
void dfs(LL x){
	vis[x]=2;
	if(!vis[NEXT[x]])dfs(NEXT[x]);
	if(vis[NEXT[x]]==2){
		tot++;
		find_loops(x);
	}
	if(vis[NEXT[x]]==1||vis[NEXT[x]]==3)vis[x]=1;
}
int main(){
	LL i,ans=1;
	_read(n);
	for(i=1;i<=n;i++)_read(NEXT[i]);
	for(i=1;i<=n;i++)
	    if(!vis[i])dfs(i);
	for(i=1;i<=tot;i++)ans=ans*(mg(2,loops[i],mod)-2+mod)%mod,n-=loops[i];
	cout<<ans*mg(2,n,mod)%mod;
}