printРабочее место участника

printЗадачи

168. Game

Ограничения: время – 2s/4s, память – 32MiB Ввод: input.txt или стандартный ввод Вывод: output.txt или стандартный вывод copy
Послать решение Blockly Посылки Темы Где Обсудить (0)

Recently, there was an international volleyball championship. Speaking of volleyball, we are interested in the probability of winning of one or another team, if we know some information about the teams. Here are the rules of the game and the necessary information:
  • the match is played by two teams: A and B;
  • the first team to win `K` games in a match, wins the match;
  • each game consists of rounds; each round is won by one of the teams, and the team adds one point to its score for the current game;
  • the first team to win `L` points in a game, wins the game;
  • if team A serves the ball in a round, it has `P_a`% chance to win the round (and `(100\ -\ P_a)`% to loose it);
  • if team B serves the ball in a round, it has `P_b`% chance to win the round (and `(100\ -\ P_b)`% to loose it);
  • if a round is not the first in a game, the ball in the round is served by the team that won the last round;
  • if a game is not the first in a match, the ball in the first round of the game is served by the team that did not served the ball in the first round of the previous game;
  • both teams have an equal chance to serve the ball in the first round of the very first game of a match.
So, for given values of `P_a`, `P_b`, `K`, and `L`, you have to compute the probability, as a percent, for team A to win the match.
Input
There is one number in the first line the number of data sets. Each data set consists of a single line with four integers on it: `P_a`, `P_b`, `K`, and `L` (`0\ ≤\ P_a,\ P_b\ ≤\ 100`, `1\ ≤\ K\ ≤\ 100`, `1\ ≤\ L\ ≤\ 100`).
Output
For each test you must write on one line the required result with exactly one digit after the decimal point (the number should be rounded to the first digit after the decimal point).

Sample Input

2
100 50 1 3
100 1 1 1

Sample Output

93.8
99.5
Source: ACM ICPC SEERC, 2002
loading