1503. Last Moment Before All Ants Fall Out of a Plank

https://leetcode.com/problems/last-moment-before-all-ants-fall-out-of-a-plank

Description

We have a wooden plank of the length n units. Some ants are walking on the plank, each ant moves with speed 1 unit per second. Some of the ants move to the left, the other move to the right.

When two ants moving in two different directions meet at some point, they change their directions and continue moving again. Assume changing directions doesn't take any additional time.

When an ant reaches one end of the plank at a time t, it falls out of the plank imediately.

Given an integer n and two integer arrays left and right, the positions of the ants moving to the left and the right. Return the moment when the last ant(s) fall out of the plank.

Example 1:

Example 2:

Example 3:

Example 4:

Example 5:

Constraints:

  • 1 <= n <= 10^4

  • 0 <= left.length <= n + 1

  • 0 <= left[i] <= n

  • 0 <= right.length <= n + 1

  • 0 <= right[i] <= n

  • 1 <= left.length + right.length <= n + 1

  • All values of left and right are unique, and each value can appear only in one of the two arrays.

ac

Last updated

Was this helpful?