leetcode-1014-最佳观光组合

Posted 真不知道叫啥好

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode-1014-最佳观光组合相关的知识,希望对你有一定的参考价值。

 

 解: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-最佳观光组合的主要内容,如果未能解决你的问题,请参考以下文章

leetcode-1014-最佳观光组合

题解 LEETCODE1014

java刷题--1014最佳观光组合

LeetCode-数组最佳观光组合

LeetCode每日一题2020.6.17 1014. 最佳观光组合

LeetCode刷题笔记-动态规划-day7