luogu#P10868. [HBCPC2024] Points on the Number Axis B
[HBCPC2024] Points on the Number Axis B
题目描述
Bob is playing a single-player game on the number axis.
There are points on the number axis. Each time, the player selects two points. The two points will be removed, and their midpoint will be added. When there is only one point on the axis, the game ends. Formally, if the two chosen points is and , then will be added after the operation.
In order to play this game happily, Bob will always select two adjacent points randomly. Initially, the -th point and the -th point are adjacent. When Bob added a new point, it inherits its left point's left adjacent point and its right point's right adjacent point.
Now Bob have a question: where is the expected position of the last point.
It can be proven that the answer can be expressed in the form , you only need to output the value of .
输入格式
The first line contains one integer ().
The second line contains integers (), describing the position of the -th point.
Note that two points may be in the same position.
输出格式
Output one integer, the answer modulo .
3
1 2 4
623902723