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
|
||||||||||||||
2023-01-19 17:47:16
@ianveshi thank you for the testcase :) here it is (just incase if anyone wants it): Input: 6 3 400 [spoiler removed] Output: YES Last edit: 2023-09-08 16:24:03 |
||||||||||||||
2020-06-29 10:53:27
EASY AF!!!! |
||||||||||||||
2020-03-18 14:42:35
super simple! |
||||||||||||||
2020-01-22 19:39:50
basic arithmetic O(spoiler) Last edit: 2020-02-07 21:47:56 |
||||||||||||||
2019-11-11 20:18:40
don't underestimate any question. |
||||||||||||||
2019-07-11 19:56:32
Use [spoiler] [spoiler] solution Last edit: 2019-09-30 14:48:13 |
||||||||||||||
2018-12-27 20:51:29
silly mistake "\n" after printing yes or no |
||||||||||||||
2018-08-11 11:35:56
easy peasy with [spoiler] Last edit: 2018-08-22 15:54:06 |
||||||||||||||
2018-06-26 03:29:06
I am done for! :') |
||||||||||||||
2018-04-01 23:14:01
Read @sobriquet's comment if you think your solution is right and still getting WA |