LeetCode 1503. 所有蚂蚁掉下来前的最后一刻
Posted li修远
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode 1503. 所有蚂蚁掉下来前的最后一刻相关的知识,希望对你有一定的参考价值。
脑筋急转弯
每只蚂蚁都一样,相遇之后,相当于两人互换身份,继续朝原来的方向前进。因此,找出距离朝向端点最远的蚂蚁需要走多久,就是答案。
class Solution {
public int getLastMoment(int n, int[] left, int[] right) {
int res = -1;
for(int i=0; i < left.length; i++)
res = Math.max(res, left[i]);
for(int i=0; i < right.length; i++)
res = Math.max(res, n-right[i]);
return res;
}
}
以上是关于LeetCode 1503. 所有蚂蚁掉下来前的最后一刻的主要内容,如果未能解决你的问题,请参考以下文章