题解 | #牛群的能量#
牛群的能量
https://www.nowcoder.com/practice/00f87ddcd18842d0824d487fd70a730e
import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param energy int整型一维数组 * @return int整型 */ public int maxEnergy (int[] energy) { int[] dp=new int[energy.length]; dp[0]=energy[0]; int max=Integer.MIN_VALUE; if(energy.length==1){ return energy[0]; } for (int i=1;i<energy.length;i++){ dp[i]=Math.max(dp[i-1]+energy[i],energy[i]); max=Math.max(max,dp[i]); } return max; } }