LC 11.盛最多水的容器

11.盛最多水的容器

给定一个长度为 n 的整数数组 height 。有 n 条垂线,第 i 条线的两个端点是 (i, 0)(i, height[i])

找出其中的两条线,使得它们与 x 轴共同构成的容器可以容纳最多的水。

返回容器可以储存的最大水量。

说明: 你不能倾斜容器。

示例 1:

输入:[1,8,6,2,5,4,8,3,7]

输出: 49
解释: 图中垂直线代表输入数组 [1,8,6,2,5,4,8,3,7]。在此情况下,容器能够容纳水(表示为蓝色部分)的最大值为 49。

示例 2:

输入: height = [1,1]
输出: 1

提示:

  • n = = h e i g h t . l e n g t h n == height.length n==height.length
  • 2 ≤ n ≤ 1 0 5 2 \leq n \leq 10^5 2n105
  • 0 ≤ h e i g h t [ i ] ≤ 1 0 4 0 \leq height[i] \leq 10^4 0height[i]104

解法一(双指针)

思路分析:

  1. 首先确定最大盛水容量有关的两个因素, 即x轴尽可能宽, height尽可能高; 且高受限于两边的最低高度;
  2. 存在两边,所以考虑使用双指针, left指向左边, right指向右边; 即容量为 area = Math.min(height[left], height[right]) * (right - left)
  3. 可以从最大宽度开始变化,即left指向起始位置, right指向末尾位置, 然后尝试变化左右指针来获取最大盛水容量;
  4. 当左指针高度(height[left]) < 右指针高度时(height[right]), 若移动右指针,在宽度本身变小的情况,高度不发生变化, 则容量肯定变小, 移动右指针没有意义; 所以此时应该移动左指针
  5. 同理, 当 height[left] > height[right]时, 移动右指针right;
  6. 在变化过程中始终保持记录最大容量area = Math.max(area, Math.min(height[left], height[right]) * (right - left));

实现代码如下:

class Solution {
    public int maxArea(int[] height) {
		// 最大水量
		int area = 0;
		int left = 0;
		int right = height.length - 1;
		while (left < right) {
			area = Math.max(area, Math.min(height[left], height[right]) * (right-left));
			if (height[left] > height[right]) {
				-- right;
			} else {
				++ left;
			}
		}
		return area;
    }
}

提交结果如下:

解答成功:
执行耗时:4 ms,击败了67.68% 的Java用户
内存消耗:56.9 MB,击败了23.36% 的Java用户

复杂度分析:

  • 时间复杂度: O ( n ) O(n) O(n), 遍历数组
  • 空间复杂度: O ( 1 ) O(1) O(1)
``` import ee # 初始化GEE(前提是earthengine authenticate已经成功) ee.Initialize() # ========== 基础参数 ========== china = ee.Geometry.Polygon(...) # 替换成你研究区的几何 city_table = ee.FeatureCollection('users/your_username/your_city_table') # 城市边界表 batch_size = 20 # 每批最多处理多少城市(视账号配额和数据量调整) years = [2020] months = list(range(1, 13)) # ========== 准备影像集合 ========== def mask_l8sr(image): cloud_mask = image.select('QA_PIXEL').bitwiseAnd(1 << 3).eq(0) return image.updateMask(cloud_mask).multiply(0.00341802).add(149.0) # 转换为地表温度 landsat_collection = (ee.ImageCollection('LANDSAT/LC08/C02/T1_L2') .filterBounds(china) .filterDate('2020-01-01', '2020-12-31') .map(mask_l8sr)) # ========== 按月份生成合成影像 ========== def create_monthly_composite(year, month, collection): start_date = ee.Date.fromYMD(year, month, 1) end_date = start_date.advance(1, 'month') monthly_image = (collection .filterDate(start_date, end_date) .median() .set('year', year, 'month', month)) return monthly_image monthly_composites = [] for month in months: monthly_composites.append(create_monthly_composite(2020, month, landsat_collection)) # ========== 分批处理城市 ========== num_cities = city_table.size().getInfo() num_batches = (num_cities + batch_size - 1) // batch_size all_results = ee.FeatureCollection([]) for batch in range(num_batches): print(f"处理批次 {batch+1}/{num_batches}") start = batch * batch_size end = min(start + batch_size, num_cities) current_batch = city_table.toList(batch_size, start) # ========== 核心城市处理函数 ========== def process_city(city): city = ee.Feature(city) city_name = city.get('name') city_geom = city.geometry() monthly_features = [] for month_idx, monthly_comp in enumerate(monthly_composites): month_num = month_idx + 1 stats = monthly_comp.select('ST_B10').reduceRegion( reducer=ee.Reducer.mean(), geometry=city```补全
03-17
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值