1503. Last Moment Before All Ants Fall Out of a Plank
Last updated
Was this helpful?
Last updated
Was this helpful?
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.
范围为[0, n]的一维坐标系,left表示对应位置的蚂蚁会向左走,right为向右走的,当两个蚂蚁相遇后会分别折返,问最后一只蚂蚁走出坐标系需要的步数。蚂蚁相遇后的效果依然是一只蚂蚁往左另一只往右,区分哪只是哪只并无裨益,因此分别统计往左走的离0有多远,右边离n多远,找它们中距离最大的