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

leetcode-1014-最佳观光组合

时间:2020-06-18 01:56:26      阅读:58      评论:0      收藏:0      [点我收藏+]

标签:com   bsp   turn   http   etc   ret   nbsp   图片   loading   

技术图片

 

 解:O(N)

class Solution:
    def maxScoreSightseeingPair(self, A: List[int]) -> int:
        left, res = A[0], -1
        for j in range(1, len(A)):
            res = max(res, left + A[j] - j)
            left = max(left, A[j] + j)
        return res

 

leetcode-1014-最佳观光组合

标签:com   bsp   turn   http   etc   ret   nbsp   图片   loading   

原文地址:https://www.cnblogs.com/oldby/p/13155382.html

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