[Solution] Ela Goes Hiking Codeforces Solution
cannibalistic ants in a line on a long wooden stick. Initially, the ants have the same weight of . The distance between any two consecutive ants is the same. The distance between the first ant in the line to the left end and the last ant in the line to the right end is also the same as the distance between the ants. Each ant starts moving towards the left-end or the right-end randomly and equiprobably, at the same constant pace throughout the experiment. Two ants will crash if they are standing next to each other in the line and moving in opposite directions, and ants will change direction immediately when they reach the end of the stick. Ela can't determine the moving direction of each ant, but she understands very well their behavior when crashes happen.
- If a crash happens between two ants of different weights, the heavier one will eat the lighter one, and gain the weight of the lighter one. After that, the heavier and will continue walking in the same direction. In other words, if the heavier one has weight and walking to the right, the lighter one has weight and walking to the left (), then after the crash, the lighter one will diminish, and the heavier one will have weight and continue walking to the right.
- If a crash happens between two ants with the same weight, the one walking to the left end of the stick will eat the one walking to the right, and then continue walking in the same direction. In other words, if one ant of weight walking to the left, crashes with another ant of weight walking to the right, the one walking to the right will disappear, and the one walking to the left will have to weight and continue walking to the left.
Please, check the example in the "Note" section, which will demonstrate the ants' behavior as above.
We can prove that after a definite amount of time, there will be only one last ant standing. Initially, each ant can randomly and equiprobably move to the left or the right, which generates different cases of initial movements for the whole pack. For each position in the line, calculate the probability that the ant begins in that position and survives. Output it modulo .
Formally, let . It can be shown that the answer can be expressed as an irreducible fraction , where and are integers and . Output the integer equal to . In other words, output such an integer that and .
Each test contains multiple test cases. The first line contains the number of test cases (). The description of the test cases follows.
The only line of each test contains an integer () — the number of ants in the experiment.
It is guaranteed that the sum of in all tests will not exceed .
For each test, print lines. -th line contains a single number that denotes the survival probability of the -th ant in the line modulo .
No comments:
Post a Comment