Submit | All submissions | Best solutions | Back to list |
DOTAA - DOTA HEROES |
Defence Of The Ancients (DOTA) is one of the most addictive online multiplayer games. There are n heroes in our team and our motto is to conquer the opponent’s empire. To safeguard their empire, the opponents had constructed m towers on the path. If one or more heroes get into the sight of a tower, then the tower does D amount of damage to one of those heroes at that instant (i.e. one of the heroes’ health decreases by D). Any hero will die if his health H <= 0. Once a tower attacks one of the heroes, all the heroes in the sight of that tower at that instant get out of its sight. Find whether all of the heroes in our team can reach the opponent’s empire alive.
Input
The first line consists of one integer t representing the number of test cases. For each test case, the first line consists of three integers n, m and D, the number of heroes, number of towers and the amount of Damage respectively. The next n lines consist of an integer representing the health of respective hero.
Output
Just a word “YES” if we can reach the opponent’s empire alive, else “NO”.
Constraints
1 <= t <= 500
1 <= n <= 500
1 <= m <= n
1 <= D, H <= 20000
Example
Input: 3 6 3 400 500 500 500 500 500 500 6 5 400 800 800 801 200 200 200 6 3 400 401 401 400 200 400 200 Output: YES NO NO
Explanation of test case 1:
One of the possible solutions is: First, three of the heroes can goes together. One of them receives 400 damage from the first tower and all of them cross it. Then while crossing the next tower, one of the heroes who is at 500 health gets 400 damage and all of them cross it. Then the third hero receives the damage when crossing the last tower. Similarly the other 3 heroes can reach the opponent’s base together without dying.
Added by: | cegprakash |
Date: | 2011-12-25 |
Time limit: | 0.208s |
Source limit: | 50000B |
Memory limit: | 1536MB |
Cluster: | Cube (Intel G860) |
Languages: | All except: BF |
hide comments
|
||||||||||||||
2015-11-04 11:10:18 Akshay Aradhya
Bloody Simple with C++ [spoiler] Last edit: 2015-12-13 21:12:34 |
||||||||||||||
2015-10-20 15:44:49 munjal
can anyone solve the same problem in java ? I applied the same logic in C and got AC , but with the same logic TLE in java. :( |
||||||||||||||
2015-10-13 23:38:04 Akshay Damle
Time limit too strict, same algo gave TLE in Python 2.7 but AC in C++ |
||||||||||||||
2015-10-13 21:27:59
O(n) time and O(1) space...!!! 35th |
||||||||||||||
2015-09-28 18:50:53
TLE with java , AC with C. :( The game is simple : [huge spoiler removed] Last edit: 2015-10-12 14:24:06 |
||||||||||||||
2015-09-14 17:22:22
Simple but nice logic..Got AC after 2 WA. |
||||||||||||||
2015-09-14 17:08:22 Abishek
simple problem ..DOTA rocks ! |
||||||||||||||
2015-09-14 07:22:48
Very simple one.... :) |
||||||||||||||
2015-08-25 16:34:42 Kriti Singhal
AC in 1 go.. :D |
||||||||||||||
2015-08-23 22:19:20
Good logic...... |