1014. 最佳观光组合
https://leetcode-cn.com/problems/best-sightseeing-pair/
解法一:
求A[i]+A[j]+i-j
可以分解为A[i]+i
和A[j]-j
,由于i<j,于是一次遍历,用pre_max记录A[i]+i
最大值
最后更新于
https://leetcode-cn.com/problems/best-sightseeing-pair/
求A[i]+A[j]+i-j
可以分解为A[i]+i
和A[j]-j
,由于i<j,于是一次遍历,用pre_max记录A[i]+i
最大值
最后更新于