

Time Limit: 2 sec / Memory Limit: 1024 MB
配点 : 点
問題文
高橋君はフィギュアを組み立てようとしています。このフィギュアは、 個の部品(部品 , 部品 , ..., 部品 )と、 個の接続用部品から成ります。部品同士は区別が出来ますが、接続用部品同士は区別が出来ません。
部品 には、 個の接続用部品を挿す穴(穴 , 穴 , ..., 穴 )が空いています。各部品の穴同士は区別が出来ます。 各接続用部品は、 個の部品の穴に挿し込まれ、それら 個の部品を接続します。 つの穴に複数の接続用部品を挿し込むことは出来ません。
以下の性質を満たすフィギュアのことを、完成形と呼びます。
- 個の接続用部品が全て部品の接続に使われている。
- 部品を頂点とし、 接続用部品で接続された部品に対応する頂点組に辺が存在する 頂点 辺の無向グラフを考えた際に、このグラフは連結である。
つの完成形について、全ての穴の組についてその つを接続する接続用部品が存在するか否かが一致するとき、 つの完成形が同じであると見なします。
完成形が何種類あるかを答えてください。 ただし、答えは非常に大きくなることがあるので、 で割った余りを出力してください。
制約
- 入力は全て整数
入力
入力は以下の形式で標準入力から与えられる。
出力
答えを出力せよ。
入力例 1Copy
3 1 1 3
出力例 1Copy
6
例えば、部品 の穴 と部品 の穴 を接続し、部品 の穴 と部品 の穴 を接続したフィギュアは、完成形として認められます。
入力例 2Copy
3 1 1 1
出力例 2Copy
0
入力例 3Copy
6 7 3 5 10 6 4
出力例 3Copy
389183858
入力例 4Copy
9 425656 453453 4320 1231 9582 54336 31435436 14342 423543
出力例 4Copy
667877982
Score : points
Problem Statement
Takahashi is about to assemble a character figure, consisting of parts called Part , Part , ..., Part and connecting components. Parts are distinguishable, but connecting components are not.
Part has holes, called Hole , Hole , ..., Hole , into which a connecting component can be inserted. These holes in the parts are distinguishable. Each connecting component will be inserted into two holes in different parts, connecting these two parts. It is impossible to insert multiple connecting components into a hole.
The character figure is said to be complete when it has the following properties:
- All of the components are used to connect parts.
- Consider a graph with vertices corresponding to the parts and undirected edges corresponding to the pairs of vertices connected by a connecting component. Then, this graph is connected.
Two ways A and B to make the figure complete are considered the same when the following is satisfied: for every pair of holes, A uses a connecting component to connect these holes if and only if B uses one to connect them.
Find the number of ways to make the figure complete. Since the answer can be enormous, find the count modulo .
Constraints
- All values in input are integers.
Input
Input is given from Standard Input in the following format:
Output
Print the answer.
Sample Input 1Copy
3 1 1 3
Sample Output 1Copy
6
One way to make the figure complete is to connect Hole in Part and Hole in Part and then connect Hole in Part and Hole in Part .
Sample Input 2Copy
3 1 1 1
Sample Output 2Copy
0
Sample Input 3Copy
6 7 3 5 10 6 4
Sample Output 3Copy
389183858
Sample Input 4Copy
9 425656 453453 4320 1231 9582 54336 31435436 14342 423543
Sample Output 4Copy
667877982