21023_FindingNemo

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

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

Pro.ID

21023

Title

Finding Nemo

Title链接

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

AC

0

Submit

460

Ratio

0.00%

时间&空间限制

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

    Boudreaux and Thibodeaux are just returning from watching Finding Nemo and are finding themselves pretty hungry after watching all those fish swim around for a couple of hours. Like the true Cajuns that they are, they jump into their pickup and head on over to the local bayou. Upon arriving Boudreaux realizes that in their mad hunger rush, they have completely forgotten their fishing poles and tackle. Boudreaux yells out to Thibodeaux, "Hey couyon, you forgot about dem poles!" and Thibodeaux replies "Don't worry, I got me some fish sticks out in the truck." Boudreaux later finds out that "fish sticks" are really dynamite, to which he replies "Mais fool, now how you suppose we gonna know where to place dem sticks to catch some fish?" at which point Thibodeaux then breaks out his fish finder and laptop and whips up a program that will tell them just that. 

    Given the position of all the fish in the bayou and the spot Boudreaux and Thibodeaux want to drop their dynamite (after lighting the fuses of course), you are to write a program that will tell how many fish they will kill, ahem, I mean catch. Each dynamite stick has a certain fuse length that determines at which depth it will blow up. Any fish within a one unit radius of the dynamite when it blows up is as good as fish fried. Keep in mind that the fish never move from their location, and the dynamite sticks fall straight to the bottom of the bayou.

    输入

    Input to this problem will consist of a (non-empty) series of up to 100 data sets. Each data set will be formatted according to the following description, and there will be no blank lines separating data sets. 

    A single data set has 4 components: 
    1. Start Line - A single line: 
      START L W D 

      where (1 <= (L,W,D) <= 20). L is the length of the bayou along the x-axis, W is the width of the bayou along the y-axis, and D is the depth of the bayou on the z-axis. 
    2. Dynamite List - A single line containing a space-separated list of 1 to 10 data elements. Each element contains the location and fuse length of a single stick of dynamite as it is dropped into the bayou formatted as: 
      x,y,f 

      x and y give the surface coordinates of the drop where (0 <= x <= L) and (0 <= y <= W). f is the length of the fuse and is in the range (0 <= f <= 30). 
    3. Fish List - A single line containing a space-separated list of 1 to 15 data elements. Each element represents the location of a fish in the bayou formatted as: 
      x,y,z 

      where (0 <= x <= L), (0 <= y <= W), and (0 <= z <= D), where z = 0 indicates the fish is at the surface of the water. 
    4. End line A single line: 
      END

    After the last data set, there will be a single line: 
    ENDOFINPUT 

    Note: 
    All numeric values will be given as integers. 
    The dynamite drops at a constant speed from the top of the bayou (z = 0). 
    The fuse burns up one unit of its length in precisely the amount of time it takes the dynamite to sink one unit deeper into the bayou. 
    If the dynamite reaches the bottom of the bayou before the fuse runs out, it will stay there until it detonates. 
    Multiple fish will not occupy the same position. 
    Fish are killed if their distance from any dynamite explosion is <= 1.

    输出

    Description
    Boudreaux and Thibodeaux are just returning from watching Finding Nemo and are finding themselves pretty hungry after watching all those fish swim around for a couple of hours. Like the true Cajuns that they are, they jump into their pickup and head on over to the local bayou. Upon arriving Boudreaux realizes that in their mad hunger rush, they have completely forgotten their fishing poles and tackle. Boudreaux yells out to Thibodeaux, "Hey couyon, you forgot about dem poles!" and Thibodeaux replies "Don't worry, I got me some fish sticks out in the truck." Boudreaux later finds out that "fish sticks" are really dynamite, to which he replies "Mais fool, now how you suppose we gonna know where to place dem sticks to catch some fish?" at which point Thibodeaux then breaks out his fish finder and laptop and whips up a program that will tell them just that. 

    Given the position of all the fish in the bayou and the spot Boudreaux and Thibodeaux want to drop their dynamite (after lighting the fuses of course), you are to write a program that will tell how many fish they will kill, ahem, I mean catch. Each dynamite stick has a certain fuse length that determines at which depth it will blow up. Any fish within a one unit radius of the dynamite when it blows up is as good as fish fried. Keep in mind that the fish never move from their location, and the dynamite sticks fall straight to the bottom of the bayou.
    Input
    Input to this problem will consist of a (non-empty) series of up to 100 data sets. Each data set will be formatted according to the following description, and there will be no blank lines separating data sets. 

    A single data set has 4 components: 
    1. Start Line - A single line: 
      START L W D 

      where (1 <= (L,W,D) <= 20). L is the length of the bayou along the x-axis, W is the width of the bayou along the y-axis, and D is the depth of the bayou on the z-axis. 
    2. Dynamite List - A single line containing a space-separated list of 1 to 10 data elements. Each element contains the location and fuse length of a single stick of dynamite as it is dropped into the bayou formatted as: 
      x,y,f 

      x and y give the surface coordinates of the drop where (0 <= x <= L) and (0 <= y <= W). f is the length of the fuse and is in the range (0 <= f <= 30). 
    3. Fish List - A single line containing a space-separated list of 1 to 15 data elements. Each element represents the location of a fish in the bayou formatted as: 
      x,y,z 

      where (0 <= x <= L), (0 <= y <= W), and (0 <= z <= D), where z = 0 indicates the fish is at the surface of the water. 
    4. End line A single line: 
      END

    After the last data set, there will be a single line: 
    ENDOFINPUT 

    Note: 
    All numeric values will be given as integers. 
    The dynamite drops at a constant speed from the top of the bayou (z = 0). 
    The fuse burns up one unit of its length in precisely the amount of time it takes the dynamite to sink one unit deeper into the bayou. 
    If the dynamite reaches the bottom of the bayou before the fuse runs out, it will stay there until it detonates. 
    Multiple fish will not occupy the same position. 
    Fish are killed if their distance from any dynamite explosion is <= 1.
    Output
    For each data set, there will be exactly one line of output. The output will be a phrase stating how much fish Boudreaux and Thibodeaux will be frying up tonight. 

    If they blow up at least one fish, the following phrase will be printed: 

    AIEE, I got N fish, me! 

    where N is the number of fish blown up. If they don't blow up any fish, the following phrase will be printed: 
    None of dem fish blowed up!
    Sample Input
    START 5 5 5
    1,1,1 2,2,2 3,3,3
    4,3,0 4,4,4 3,0,2 2,1,3 3,3,3
    END
    START 2 3 4
    1,1,10 1,1,1 0,2,2
    0,0,1
    END
    ENDOFINPUT
    Sample Output
    AIEE, I got 1 fish, me!
    None of dem fish blowed up!
    Source

    样例输入

    START 5 5 5
    1,1,1 2,2,2 3,3,3
    4,3,0 4,4,4 3,0,2 2,1,3 3,3,3
    END
    START 2 3 4
    1,1,10 1,1,1 0,2,2
    0,0,1
    END
    ENDOFINPUT

    样例输出

    AIEE, I got 1 fish, me!
    None of dem fish blowed up!

    作者


    路过

    雷人

    握手

    鲜花

    鸡蛋

    最新评论

    返回顶部