21515_TheRedGe

2022-5-16 18:19| 发布者: Hocassian| 查看: 36| 评论: 0|原作者: 肇庆学院ACM合集

摘要:
C:\Users\Administrator\Downloads\2019-10-12-10-14-4-89505364196900-Problem List-采集的数据-后羿采集器.html

Pro.ID

21515

Title

The Red Gem

Title链接

http://10.20.2.8/oj/exercise/problem?problem_id=21515

AC

0

Submit

0

Ratio

-

时间&空间限制

  • Time Limit: 4000/2000 MS (Java/Others)     Memory Limit: 65536/32768 K (Java/Others)
  • 描述

    In circle land, in the museum of circles, a grand red circular gem is on display.

    The curator has decided to spice up the display, and has placed the gem on a purple circular platform, along with mundane orange circular gems.

    Starved citizens of circle land (points) have flocked to see the grand exhibit of the exquisite red gem. They cannot step on the purple exhibit floor, but can only stand on the circumference. Unfortunately, the mundane orange gems block the view of the exquisite red gem. Please help the museum folks determine the proportion of the circumference of the purple platform from which all of the red gem is visible, completely unobstructed by the orange gems.

    输入

    There will be several test cases in the input. Each test case will begin with a line with five integers:

    n p x y r

    Where n (1 ≤ n ≤ 100) is the number of orange circles, p (10 ≤ p ≤ 1,000) is the radius of the purple platform, (x, y) is the center of the red gem relative to the center of the purple platform (-1,000 ≤ x, y ≤ 1000), and r (0 < r ≤ 1000) is the radius of the red gem. The red gem is guaranteed to lie fully on the purple platform. No part of the red gem will extend past the purple platform.

    On each of the next n lines will be three integers:

    x y r

    which represent the (x, y) center (-1,000 ≤ x, y ≤ 1000) relative to the center of the purple platform, and radius r (0 < r ≤ 1000) of each orange gem. As with the red gem, each orange gem is guaranteed to lie entirely on the purple platform. The orange gems will not overlap the red gem, and they will not overlap each other. The input will end with a line with 5 0s.

    输出

    Description

    In circle land, in the museum of circles, a grand red circular gem is on display.

    The curator has decided to spice up the display, and has placed the gem on a purple circular platform, along with mundane orange circular gems.

    Starved citizens of circle land (points) have flocked to see the grand exhibit of the exquisite red gem. They cannot step on the purple exhibit floor, but can only stand on the circumference. Unfortunately, the mundane orange gems block the view of the exquisite red gem. Please help the museum folks determine the proportion of the circumference of the purple platform from which all of the red gem is visible, completely unobstructed by the orange gems.

    Input

    There will be several test cases in the input. Each test case will begin with a line with five integers:

    n p x y r

    Where n (1 ≤ n ≤ 100) is the number of orange circles, p (10 ≤ p ≤ 1,000) is the radius of the purple platform, (x, y) is the center of the red gem relative to the center of the purple platform (-1,000 ≤ x, y ≤ 1000), and r (0 < r ≤ 1000) is the radius of the red gem. The red gem is guaranteed to lie fully on the purple platform. No part of the red gem will extend past the purple platform.

    On each of the next n lines will be three integers:

    x y r

    which represent the (x, y) center (-1,000 ≤ x, y ≤ 1000) relative to the center of the purple platform, and radius r (0 < r ≤ 1000) of each orange gem. As with the red gem, each orange gem is guaranteed to lie entirely on the purple platform. The orange gems will not overlap the red gem, and they will not overlap each other. The input will end with a line with 5 0s.

    Output

    For each test case, output a single floating point number on its own line, indicating the proportion of the perimeter of the purple platform where all of the red gem is visible. This result should be between 0 and 1 (inclusive). Output this number with exactly 4 decimal places of accuracy, with standard 5 up / 4 down rounding (e.g. 2.12344 rounds to 2.1234, 2.12345 rounds to 2.1235). Output each number on its own line, with no spaces, and do not print any blank lines between answers.

    Sample Input

    4 10 0 0 1
    5 0 2
    0 5 2
    -5 0 2
    0 -5 2
    0 0 0 0 0

    Sample Output

    0.3082

    Source

    样例输入

    4 10 0 0 1
    5 0 2
    0 5 2
    -5 0 2
    0 -5 2
    0 0 0 0 0

    样例输出

    0.3082

    作者


    路过

    雷人

    握手

    鲜花

    鸡蛋

    最新评论

    返回顶部