#ABC290G. [ABC290G] Edge Elimination

[ABC290G] Edge Elimination

Score : 600600 points

Problem Statement

Solve the following problem for TT test cases.

We have a perfect KK-ary tree of depth DD (with 1+K+K2++KD1+K+K^2+\dots+K^D vertices). Your objective is to cut some of the edges to obtain a connected component with exactly XX vertices. At least how many edges must be cut to achieve the objective?

Constraints

  • All values in the input are integers.
  • 1T1001 \le T \le 100
  • 1D1 \le D
  • 2K2 \le K
  • $\displaystyle 1 \le X \le \sum_{i=0}^{D} K^i \le 10^{18}$

Input

The input is given from Standard Input in the following format:

TT

case1case_1

\vdots

caseTcase_T

Here, caseicase_i denotes the ii-th test case. Each test case is given in the following format:

DD KK XX

Output

Print TT lines. The ii-th line should contain the answer to the ii-th test case as an integer.

11
2 2 1
2 2 2
2 2 3
2 2 4
2 2 5
2 2 6
2 2 7
1 999999999999999999 1
1 999999999999999999 2
1 999999999999999999 999999999999999999
1 999999999999999999 1000000000000000000
1
2
1
1
2
1
0
1
999999999999999998
1
0