#P9360. [ICPC 2022 Xi'an R] Clone Ranran

[ICPC 2022 Xi'an R] Clone Ranran

题目描述

Ranran needs to prepare a contest! A contest is made of cc problems, and Ranran can do one of the following two things:

  • Clone himself in aa minutes. That is, after aa minutes, there will be one more Ranran.
  • Prepare a problem in bb minutes. That is, after bb minutes, there will be one more problem.

Note that a cloned Ranran can also do the two things above. A Ranran cannot do the two things at the same time.

Ranran wants to prepare the contest as fast as possible. But he is very lazy, so he asks you to find the minimum number of minutes to prepare the contest.

You need to answer TT queries independently.

输入格式

The first line contains an integer TT (1T1051\leq T\leq 10 ^ 5).

Each of the next TT lines contains three integers aa, bb and cc (1a,b,c1091\leq a, b, c\leq 10 ^ 9), representing a query.

输出格式

For each test case, output a line with a single integer representing the answer.

5
1 1 1
2 3 3
9 9 9
3 26 47
1064 822 1048576

1
7
45
44
21860

提示

Source: The 2022 ICPC Asia Xi'an Regional Contest Problem C.

Author: MagicSpark.