欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

leetcode:1014. 最佳观光组合(数组)

程序员文章站 2022-07-15 09:49:49
...

题目:

leetcode:1014. 最佳观光组合(数组)

分析:

leetcode:1014. 最佳观光组合(数组)
这样的题解都给出来了,我写出的依旧是垃圾的代码!

代码:

class Solution {
public:
    int maxScoreSightseeingPair(vector<int>& A) {
 int anw_max=-(1<<30),pre_maxx=A[0]+0;
 for(int i=1;i<A.size();i++)
 {
  anw_max=max(pre_maxx+A[i]-i,anw_max);
  pre_maxx=max(pre_maxx,A[i]+i);
 }
 return anw_max;
    }
};

大佬python:这样的思路也太强了吧

leetcode:1014. 最佳观光组合(数组)