D - Twin Binary Trees 解説 /

実行時間制限: 2.5 sec / メモリ制限: 1024 MB

配点 : 1000

問題文

テレビドラマシリーズ『ストレンジャー・シングス』に触発されたクマのリマクは、現実世界と鏡像世界を歩いて行き来することにしました。

二つの高さ H の完全二分木があり、それぞれの頂点は 1 から 2^H-1 までの標準的な番号付けがなされています。 すなわち、根の番号は 1 で、番号 x の子の番号は 2 \cdot x2 \cdot x + 1 です。

一つの木が持つ葉の数を L とします。すなわち、L = 2^{H-1} です。

数列 1, \ldots, L の順列 P_1, P_2, \ldots, P_L が与えられます。これは、二つの木を結ぶ L 本の 特殊辺 を表します。 すなわち、第一の木の番号 L+i-1 の頂点と第二の木の番号 L+P_i-1 の頂点が一本の特殊辺で結ばれています。

入力例 1 のグラフ

入力例 1 の図示。P = (2, 3, 1, 4) であり、緑の辺が特殊辺

サイクルの を、それに含まれる頂点の番号の積と定義します。ちょうど二本の特殊辺を持つような すべての単純サイクルの積の和を (10^9+7) で割った余りを求めてください。

なお、単純サイクルとは、長さが 3 以上であって頂点や辺の重複がないようなサイクルです。

制約

  • 2 \leq H \leq 18
  • 1 \leq P_i \leq L (ただし L = 2^{H-1})
  • P_i \neq P_j (すなわち、この数列は 1, \ldots, L の順列である)

入力

入力は以下の形式で標準入力から与えられる (ここで、L = 2^{H-1} である)。

H
P_1 P_2 \cdots P_L

出力

ちょうど二本の特殊辺を持つようなすべての単純サイクルの積の和を求め、それを (10^9+7) で割った余りを出力せよ。


入力例 1

3
2 3 1 4

出力例 1

121788

下図に考慮すべきサイクルを二つ示します (他にも存在します)。一つめのサイクルの積は 2 \cdot 5 \cdot 6 \cdot 3 \cdot 1 \cdot 2 \cdot 5 \cdot 4 = 7200、二つめのサイクルの積は 1 \cdot 3 \cdot 7 \cdot 7 \cdot 3 \cdot 1 \cdot 2 \cdot 5 \cdot 4 \cdot 2 = 35280 です。三つめのサイクルは、特殊辺の数が二本でないため、考慮すべきサイクルではありません。

three cycles


入力例 2

2
1 2

出力例 2

36

グラフ中の唯一のサイクルは確かに特殊辺を二本持ち、その頂点番号の積は 1 \cdot 3 \cdot 3 \cdot 1 \cdot 2 \cdot 2 = 36 です。


入力例 3

5
6 14 15 7 12 16 5 4 11 9 3 10 8 2 13 1

出力例 3

10199246

Score : 1000 points

Problem Statement

Inspired by the tv series Stranger Things, bear Limak is going for a walk between two mirror worlds.

There are two perfect binary trees of height H, each with the standard numeration of vertices from 1 to 2^H-1. The root is 1 and the children of x are 2 \cdot x and 2 \cdot x + 1.

Let L denote the number of leaves in a single tree, L = 2^{H-1}.

You are given a permutation P_1, P_2, \ldots, P_L of numbers 1 through L. It describes L special edges that connect leaves of the two trees. There is a special edge between vertex L+i-1 in the first tree and vertex L+P_i-1 in the second tree.

graph for sample1

drawing for the first sample test, permutation P = (2, 3, 1, 4), special edges in green

Let's define product of a cycle as the product of numbers in its vertices. Compute the sum of products of all simple cycles that have exactly two special edges, modulo (10^9+7).

A simple cycle is a cycle of length at least 3, without repeated vertices or edges.

Constraints

  • 2 \leq H \leq 18
  • 1 \leq P_i \leq L where L = 2^{H-1}
  • P_i \neq P_j (so this is a permutation)

Input

Input is given from Standard Input in the following format (where L = 2^{H-1}).

H
P_1 P_2 \cdots P_L

Output

Compute the sum of products of simple cycles that have exactly two special edges. Print the answer modulo (10^9+7).


Sample Input 1

3
2 3 1 4

Sample Output 1

121788

The following drawings show two valid cycles (but there are more!) with products 2 \cdot 5 \cdot 6 \cdot 3 \cdot 1 \cdot 2 \cdot 5 \cdot 4 = 7200 and 1 \cdot 3 \cdot 7 \cdot 7 \cdot 3 \cdot 1 \cdot 2 \cdot 5 \cdot 4 \cdot 2 = 35280. The third cycle is invalid because it doesn't have exactly two special edges.

three cycles


Sample Input 2

2
1 2

Sample Output 2

36

The only simple cycle in the graph indeed has two special edges, and the product of vertices is 1 \cdot 3 \cdot 3 \cdot 1 \cdot 2 \cdot 2 = 36.


Sample Input 3

5
6 14 15 7 12 16 5 4 11 9 3 10 8 2 13 1

Sample Output 3

10199246