Company Acquisitions

题意翻译

题意: 有n个节点,每个节点有两种状态:选中和未选中。 每个选中的点后面都跟着若干个(可能是0个)未选中的点。 每个未选中的点都一定跟在某个选中的点后面。 每次操作随机选择两个被选中的点,随机将其中一个变成未选中,且跟在另一个后面,同时将跟在他后面的节点全部改为选中。 求这样操作下去,直到最后只剩一个选中的点的期望步数。 感谢@Happynewyear 提供的翻译

题目描述

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 $ : ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF1025G/fa8280e360894e36feb9d4c9356bb04775e5906c.png)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: ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF1025G/430534ac9fdcd60794399ce9e5c11924f2bcd8ab.png)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: ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF1025G/e54e1b083f85b6688991c56bd5b9edcfa76ab814.png)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

说明

In the first sample, there are three active startups labeled $ 1 $ , $ 2 $ and $ 3 $ , and zero acquired startups. Here's an example of how one scenario can happen 1. Startup $ 1 $ acquires startup $ 2 $ (This state can be represented by the array $ [-1, 1, -1] $ ) 2. Startup $ 3 $ acquires startup $ 1 $ (This state can be represented by the array $ [3, -1, -1] $ ) 3. Startup $ 2 $ acquires startup $ 3 $ (This state can be represented by the array $ [-1, -1, 2] $ ). 4. Startup $ 2 $ acquires startup $ 1 $ (This state can be represented by the array $ [2, -1, 2] $ ). At this point, there is only one active startup, and this sequence of steps took $ 4 $ days. It can be shown the expected number of days is $ 3 $ . For the second sample, there is only one active startup, so we need zero days. For the last sample, remember to take the answer modulo $ 10^9+7 $ .