F.A.Q
Hand In Hand
Online Acmers
Problem Archive
Realtime Judge Status
Authors Ranklist
 
     C/C++/Java Exams     
ACM Steps
Go to Job
Contest LiveCast
ICPC@China
Best Coder beta
VIP | STD Contests
    DIY | Web-DIY beta
Author ID 
Password 
 Register new ID

Cross the Fire

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 529    Accepted Submission(s): 230


Problem Description
Our hero is planned to cross an important street, the other side of the street is the headquarters of the enemy. The whole street is a rectangle with length L and width W. Because the streets are sealed of the building block on both up and down side, we assumed people can only walk down on the street but not get out the up and down board.
In order to prevent our hero, the evil enemy layout N mines in the street. Due to internal staff informed in advance, the hero has known the distribution of all mines, and their explosion radius and explosion power. The mine enemy used is an amazing sense-mine, as long as the person come into its sensing radius, it will explode, due to unknown reasons, the explosion radius of each mine is same to its sensing radius. Heroes have a certain strength value at first, but once he touching a mine, he will lose some strength value same to the explosion power of this mine. Once the hero's strength value is not greater than zero, he will die.
Now hero want you to help him calculate whether there is a path so that he can live to reach the enemy headquarters. If he can live to cross the street, he wants to know the maximum remaining strength value after crossing the street. We assume the hero's path trajectory is arbitrary.
 

Input
The input consists of several test cases.
The first line contains four integers L, W, N and P¨C the length and the width of the street, the number of mines, and the initial strength value of hero, respectively(1 ¡Ü L ¡Ü 10000 ,1 ¡Ü W ¡Ü 10000, 1 ¡Ü N ¡Ü 250, 1 ¡Ü P ¡Ü 1000000). Each of the following N lines contains four integers Xi, Yi, Ri and Pi ¨C the coordinates, the sensing radius(explosion radius) and the explosion power of i-th mine in the street (0 ¡Ü Xi ¡Ü L, 0 ¡Ü Yi ¡Ü W, 1 ¡Ü Ri ¡Ü 100, 1 ¡Ü Pi ¡Ü 10000). The coordinates and radius are given in meters, relative to the street: the southwestern corner of the street has coordinates (0, 0), and the northeastern corner of the street has coordinates (L, W).
Note that crossing the street may start at coordinate (0, ys ) for any 0 ¡Ü ys ¡Ü W and end at coordinate (L, ye ) for any 0 ¡Ü ye ¡Ü W . Neither ys nor ye need to be integer.
 

Output
For each input cases, if our hero cannot live to cross the street, please output ¡°Our hero has been killed¡±; otherwise output the maximum remaining strength value after crossing the street.
 

Sample Input
130 340 5 2 10 50 100 1 130 130 100 1 70 170 100 1 0 180 100 1 60 260 100 1
 

Sample Output
1
 

Source
 

Statistic | Submit | Discuss | Note
Hangzhou Dianzi University Online Judge 3.0
Copyright © 2005-2024 HDU ACM Team. All Rights Reserved.
Designer & Developer : Wang Rongtao LinLe GaoJie GanLu
Total 0.000000(s) query 1, Server time : 2024-05-05 17:37:44, Gzip enabled