Problem Description
You are given n
robots, each having a position on a line, health, and movement direction. You need to determine the health of the robots that survive collisions, in the same order they were given. If two robots collide, the robot with lower health is removed, and the other loses 1 health. If both have the same health, both are removed.
Key Insights
- Robots move simultaneously in their specified directions.
- Collisions only occur between robots moving towards each other (
R
andL
). - When a collision occurs, the robot with lower health is removed, and the other loses health.
- The final health of surviving robots must be returned in the order they were given.
Space and Time Complexity
Time Complexity: O(n log n) - due to sorting the positions. Space Complexity: O(n) - for the stack to keep track of surviving robots.
Solution
The approach involves:
- Pairing each robot's position, health, and direction into a tuple.
- Sorting the robots by their position to handle collisions efficiently.
- Using a stack to keep track of surviving robots:
- Traverse the sorted robots and process collisions based on their directions.
- If a robot moving right (
R
) meets a robot moving left (L
), determine the outcome based on their health. - Continue processing until all possible collisions are resolved.
- The remaining robots in the stack are the survivors, and their health is returned in the original order.