题库练习 Company Acquisitions
← 上一题 下一题 →

A12057 | Company Acquisitions

时间限制1s
内存限制256MB
通过 / 提交0/0

题目描述

There are $n$ startups. Startups can be active or acquired. If a startup is acquired, then that means it has exactly one active startup that it is following. An active startup can have arbitrarily many acquired startups that are following it. An active startup cannot follow any other startup.

The following steps happen until there is exactly one active startup. The following sequence of steps takes exactly 1 day.

1. Two distinct active startups $A$ , $B$ , are chosen uniformly at random.
2. A fair coin is flipped, and with equal probability, $A$ acquires $B$ or $B$ acquires $A$ (i.e. if $A$ acquires $B$ , then that means $B$ 's state changes from active to acquired, and its starts following $A$ ).
3. When a startup changes from active to acquired, all of its previously acquired startups become active.

For example, the following scenario can happen: Let's say $A$ , $B$ are active startups. $C$ , $D$ , $E$ are acquired startups under $A$ , and $F$ , $G$ are acquired startups under $B$ :

![](/uploads/acgo/image/d53b8805f3780f14_5e620aea5ad2.jpeg)Active startups are shown in red.

If $A$ acquires $B$ , then the state will be $A$ , $F$ , $G$ are active startups. $C$ , $D$ , $E$ , $B$ are acquired startups under $A$ . $F$ and $G$ have no acquired startups:

![](/uploads/acgo/image/04366d883f9f9585_5eccb384eeb8.jpeg)If instead, $B$ acquires $A$ , then the state will be $B$ , $C$ , $D$ , $E$ are active startups. $F$ , $G$ , $A$ are acquired startups under $B$ . $C$ , $D$ , $E$ have no acquired startups:

![](/uploads/acgo/image/af0631f5f8c897db_6851cee8309d.jpeg)You are given the initial state of the startups. For each startup, you are told if it is either acquired or active. If it is acquired, you are also given the index of the active startup that it is following.

You're now wondering, what is the expected number of days needed for this process to finish with exactly one active startup at the end.

It can be shown the expected number of days can be written as a rational number $P/Q$ , where $P$ and $Q$ are co-prime integers, and $Q \not= 0 \pmod{10^9+7}$ . Return the value of $P \cdot Q^{-1}$ modulo $10^9+7$ .

输入格式

The first line contains a single integer $n$ ( $2 \leq n \leq 500$ ), the number of startups.

The next line will contain $n$ space-separated integers $a_1, a_2, \ldots, a_n$ ( $a_i = -1$ or $1 \leq a_i \leq n$ ). If $a_i = -1$ , then that means startup $i$ is active. Otherwise, if $1 \leq a_i \leq n$ , then startup $i$ is acquired, and it is currently following startup $a_i$ . It is guaranteed if $a_i \not= -1$ , then $a_{a_i} =-1$ (that is, all startups that are being followed are active).

输出格式

Print a single integer, the expected number of days needed for the process to end with exactly one active startup, modulo $10^9+7$ .

输入输出样例

输入 #1
3
-1 -1 -1
输出 #1
3
输入 #2
2
2 -1
输出 #2
0
输入 #3
40
3 3 -1 -1 4 4 -1 -1 -1 -1 -1 10 10 10 10 10 10 4 20 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 3 3 3 3 3 3 3 3
输出 #3
755808950
C++ 编辑器
输入
输出