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
|
||||||||||||||
2014-07-18 12:11:24 Vikrant Singh
Getting TLE again and again :( |
||||||||||||||
2014-07-14 19:16:44 Ajay Prasadh
stl cakewalk :P |
||||||||||||||
2014-05-22 11:40:01 Manish Jindal
was taking damage 400(not D) lead me 4 wrong ans. :( finally AC. :) |
||||||||||||||
2014-05-07 12:19:00 Riddhi
thank you for sample input :D it helped |
||||||||||||||
2014-03-13 19:22:01 Abhimanyu
century !! :) |
||||||||||||||
2014-03-13 19:22:01 Raman Shukla
Easy one... Just read the problem carefully... |
||||||||||||||
2014-03-13 19:22:01 Shivam Bansal
easy without stl too :) |
||||||||||||||
2014-03-13 19:22:01 Vijay Jain
very easy with stl :D |
||||||||||||||
2014-03-13 19:22:01 shiva_hellgeek
This is the 100th problem I solved on spoj!!! :) |
||||||||||||||
2014-03-13 19:22:01 PASS ? WIN : T-L-H
@VARUN KUMARE, do you read the text clearly? It said that "1<=m<=n". Even so, I have WA 2013-01-06 00:56:06 VARUN KUMARE Hey guys! u may also try it! i/p: 6 9 400 601 601 601 601 601 601 6 9 400 801 801 801 801 801 801 6 3 400 500 500 200 500 500 500 o/p: NO YES YES |