接雨水(#42)
/** * @param {number[]} height * @return {number} */ var trap = function(height) { let n=height.length; if(n===0) return 0; let res=0; let left_max=[] ,right_max=[]; //记录左边数组的最大值 left_max[0]=height[0]; for(let i=1;i<n;i++){ left_max[i]=Math.max(left_max[i-1],height[i]); } //记录右边数组的最大值 right_max[n-1]=height[n-1]; for(let i=n-2;i>=0;i--){ right_max[i]=Math.max(right_max[i+1],height[i]); } //统计每一列的面积之和 for(let i=0;i<n;i++){ res+=Math.min(left_max[i],right_max[i])-height[i]; } return res; };
时间复杂度:O(n)。
存储最大高度数组,需要两次遍历,每次 O(n) 。
最终使用存储的数据更新ans ,O(n)。
空间复杂度:O(n) 额外空间。
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步