Alice 和 Bob 在玩一个游戏。
有 个石子在这里,Alice 和 Bob 轮流投掷硬币,如果正面朝上,则从 个石子中取出一个石子,否则不做任何事。取到最后一颗石子的人胜利。Alice 在投掷硬币时有 的概率投掷出他想投的一面,Bob 有 的概率投掷出他相投的一面。
现在 Alice 先手投掷硬币,假设他们都想赢得游戏,问你 Alice 胜利的概率为多少。
Input starts with a line containing one integer - a number of test cases (). Then test cases follow. Each of them is one line with three numbers , , and separated with a space (, ). and have not more than digits after decimal point.
For each test case output one line with a probability that Alice will win the game. Your answer must be precise up to .
1
1 0.5 0.5
0.666666667
Alice and Bob play the following game. First, they collect small stones and put them together in one pile. After that, they throw a coin one by one. Alice starts first. If a player throws heads then he takes exactly one stone from the pile. In case of tails he don't do anything. The one who takes the last stone wins. For each player, his skill of throwing a coin is known (to everyone, including himself and his opponent). More precisely, if Alice wants to throw some specific side of the coin, she always succeeds with probability . The same probability for Bob is .
You are to find probability that Alice will win the game if both guys play optimally.
Input starts with a line containing one integer - a number of test cases (). Then test cases follow. Each of them is one line with three numbers , , and separated with a space (, ). and have not more than digits after decimal point.
For each test case output one line with a probability that Alice will win the game. Your answer must be precise up to .
1
1 0.5 0.5
0.666666667