logo AlgoBeat OnlineJudge
登录 注册

#216756. [GKS 2020 #B] Wandering Robot

内存限制:1024 MiB 时间限制:3000 ms 标准输入输出
题目类型:VJudge(洛谷) 评测方式:VJudge
上传者: 匿名

题目描述

Jemma is competing in a robotics competition. The challenge for today is to build a robot that can navigate around a hole in the arena.

The arena is a grid of squares containing columns (numbered to from left to right) and rows (numbered to from top to bottom). The square in the x-th column and y-th row is denoted . The robot begins in the top left square and must navigate to the bottom right square .

A rectangular subgrid of squares has been cut out of the grid. More specifically, all the squares that are in the rectangle with top-left square and bottom-right square have been removed.

Jemma did not have much time to program her robot, so it follows a very simple algorithm:

  • If the robot is in the rightmost column, it will always move to the square directly below it. Otherwise,
  • If the robot is in the bottommost row, it will always move to the square directly right of it. Otherwise,
  • The robot will randomly choose to either move to the square directly to the right, or to the square directly below it with equal probability.

Jemma passes the challenge if her robot avoids falling into the hole and makes it to the square . What is the probability she passes the challenge?

输入格式

The first line of the input gives the number of test cases, . test cases follow. Each test case consists of a single line containing , , , , and .

输出格式

For each test case, output one line containing Case #x: y, where x is the test case number (starting from 1) and y is a real number between and inclusive, the probability that Jemma passes the challenge.

y will be considered correct if it is within an absolute or relative error of of the correct answer. See the FAQ for an explanation of what that means, and what formats of real numbers we accept.

样例

样例输入 1

4
3 3 2 2 2 2
5 3 1 2 4 2
1 10 1 3 1 5
6 4 1 3 3 4

样例输出 1

Case #1: 0.5
Case #2: 0.0625
Case #3: 0.0
Case #4: 0.3125

数据范围与提示

Limits

.

.

.

Neither the top-left nor bottom-right squares will be missing.

Test Set 1

.

.

Test Set 2

.

.