Skip to content

Latest commit

 

History

History
124 lines (92 loc) · 2.45 KB

File metadata and controls

124 lines (92 loc) · 2.45 KB

English Version

题目描述

有一个自行车手打算进行一场公路骑行,这条路线总共由 n + 1 个不同海拔的点组成。自行车手从海拔为 0 的点 0 开始骑行。

给你一个长度为 n 的整数数组 gain ,其中 gain[i] 是点 i 和点 i + 1 的 净海拔高度差0 <= i < n)。请你返回 最高点的海拔

 

示例 1:

输入:gain = [-5,1,5,0,-7]
输出:1
解释:海拔高度依次为 [0,-5,-4,1,1,-6] 。最高海拔为 1 。

示例 2:

输入:gain = [-4,-3,-2,-1,4,3,2]
输出:0
解释:海拔高度依次为 [0,-4,-7,-9,-10,-6,-3,-1] 。最高海拔为 0 。

 

提示:

  • n == gain.length
  • 1 <= n <= 100
  • -100 <= gain[i] <= 100

解法

求前 N 项和的最大值即可。

Python3

class Solution:
    def largestAltitude(self, gain: List[int]) -> int:
        res = t = 0
        for h in gain:
            t += h
            res = max(res, t)
        return res

Java

class Solution {
    public int largestAltitude(int[] gain) {
        int res = 0;
        int t = 0;
        for (int h : gain) {
            t += h;
            res = Math.max(res, t);
        }
        return res;
    }
}

C++

class Solution {
public:
    int largestAltitude(vector<int>& gain) {
        int res = 0, t = 0;
        for (int h : gain)
        {
            t += h;
            res = max(res, t);
        }
        return res;
    }
};

Go

func largestAltitude(gain []int) int {
	res, t := 0, 0
	for _, h := range gain {
		t += h
		res = max(res, t)
	}
	return res
}

func max(a, b int) int {
	if a > b {
		return a
	}
	return b
}

...