码迷,mamicode.com
首页 > 其他好文 > 详细

LeetCode 1503. 所有蚂蚁掉下来前的最后一刻

时间:2020-07-13 13:24:49      阅读:54      评论:0      收藏:0      [点我收藏+]

标签:需要   方向   get   max   pre   因此   moment   for   i++   

脑筋急转弯

每只蚂蚁都一样,相遇之后,相当于两人互换身份,继续朝原来的方向前进。因此,找出距离朝向端点最远的蚂蚁需要走多久,就是答案。

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. 所有蚂蚁掉下来前的最后一刻

标签:需要   方向   get   max   pre   因此   moment   for   i++   

原文地址:https://www.cnblogs.com/lixyuan/p/13292684.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!