#P1152F2. Neko Rules the Catniverse (Large Version)
Neko Rules the Catniverse (Large Version)
No submission language available for this problem.
Description
This problem is same as the previous one, but has larger constraints.
Aki is playing a new video game. In the video game, he will control Neko, the giant cat, to fly between planets in the Catniverse.
There are planets in the Catniverse, numbered from to . At the beginning of the game, Aki chooses the planet where Neko is initially located. Then Aki performs moves, where in each move Neko is moved from the current planet to some other planet such that:
- Planet is not visited yet.
- (where is a fixed constant given in the input)
This way, Neko will visit exactly different planets. Two ways of visiting planets are called different if there is some index such that, the -th planet visited in the first way is different from the -th planet visited in the second way.
What is the total number of ways to visit planets this way? Since the answer can be quite large, print it modulo .
The only line contains three integers , and (, , ) — the number of planets in the Catniverse, the number of planets Neko needs to visit and the said constant .
Print exactly one integer — the number of different ways Neko can visit exactly planets. Since the answer can be quite large, print it modulo .
Input
The only line contains three integers , and (, , ) — the number of planets in the Catniverse, the number of planets Neko needs to visit and the said constant .
Output
Print exactly one integer — the number of different ways Neko can visit exactly planets. Since the answer can be quite large, print it modulo .
Samples
Note
In the first example, there are ways Neko can visit all the planets:
In the second example, there are ways Neko can visit exactly planets:
In the third example, with , Neko can visit all the planets in any order, so there are ways Neko can visit all the planets.
In the fourth example, Neko only visit exactly planet (which is also the planet he initially located), and there are ways to choose the starting planet for Neko.