首页 > 其他 > 详细

leetcode1021

时间:2019-03-24 15:22:33      阅读:135      评论:0      收藏:0      [点我收藏+]

这道题暴力算法,会超时:

1 class Solution(object):
2     def maxScoreSightseeingPair(self, A: List[int]) -> int:
3         n = len(A)
4         maxsum = 0
5         for i in range(n):
6             for j in range(i+1,n):
7                 cursum = A[i] + A[j] + i - j
8                 maxsum = max(maxsum,cursum)
9         return maxsum

因此,需要使用动态规划解决:

1 class Solution(object):
2     def maxScoreSightseeingPair(self, A: List[int]) -> int:
3         n = len(A)
4         ans = 0
5         pre = A[0]
6         for i in range(1,n):
7             pre = max(pre,A[i-1]+i-1)
8             ans = max(ans,A[i]+pre-i)
9         return ans

参考:https://leetcode.com/problems/best-sightseeing-pair/discuss/261041/easy-understand-one-pass-answer-by

leetcode1021

原文:https://www.cnblogs.com/asenyang/p/10588246.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!