21325_Snakes

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

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

Pro.ID

21325

Title

Snakes

Title链接

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

AC

1

Submit

3

Ratio

33.33%

时间&空间限制

  • Time Limit: 1000/500 MS (Java/Others)     Memory Limit: 65536/65536 K (Java/Others)
  • 描述

    Buffalo Bill wishes to cross a 1000×1000 square field. A number of snakes are on the field at various positions, and each snake can strike a particular distance in any direction. Can Bill make the trip without being bitten?

    输入

    Assume that the southwest corner of the field is at (0,0) and the northwest corner at (0,1000). The input consists of a line containing n ≤ 1000, the number of snakes. A line follows for each snake, containing three real numbers: the (x, y) location of the snake and its strike distance. The snake will bite anything that passes closer than this distance from its location.

    输出

    Description

    Buffalo Bill wishes to cross a 1000×1000 square field. A number of snakes are on the field at various positions, and each snake can strike a particular distance in any direction. Can Bill make the trip without being bitten?

    Input

    Assume that the southwest corner of the field is at (0,0) and the northwest corner at (0,1000). The input consists of a line containing n ≤ 1000, the number of snakes. A line follows for each snake, containing three real numbers: the (x, y) location of the snake and its strike distance. The snake will bite anything that passes closer than this distance from its location.

    Output

    Bill must enter the field somewhere between the southwest and northwest corner and must leave somewhere between the southeast and northeast corners.

    If Bill can complete the trip, give coordinates at which he may enter and leave the field. If Bill may enter and leave at several places, give the most northerly. If there is no such pair of positions, print "Bill will be bitten."

    Sample Input

    3
    500 500 499
    0 0 999
    1000 1000 200

    Sample Output

    Bill enters at (0.00, 1000.00) and leaves at (1000.00, 800.00).

    Source

    样例输入

    3
    500 500 499
    0 0 999
    1000 1000 200

    样例输出

    Bill enters at (0.00, 1000.00) and leaves at (1000.00, 800.00).

    作者


    路过

    雷人

    握手

    鲜花

    鸡蛋

    最新评论

    返回顶部