Leetcode—1014. 最佳观光组合【中等】
2024每日刷题(164)
Leetcode—1014. 最佳观光组合
实现代码
class Solution {
public:
int maxScoreSightseeingPair(vector<int>& values) {
int mxPre = values[0] + 0;
int ans = 0;
for(int i = 1; i < values.size(); i++) {
ans = max(ans, mxPre + values[i] - i);
mxPre = max(mxPre, values[i] + i);
}
return ans;
}
};
运行结果
之后我会持续更新,如果喜欢我的文章,请记得一键三连哦,点赞关注收藏,你的每一个赞每一份关注每一次收藏都将是我前进路上的无限动力 !!!↖(▔▽▔)↗感谢支持!
原文地址:https://blog.csdn.net/qq_44631615/article/details/142448991
免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!