LeetCode --- 1588. Sum of All Odd Length Subarrays 解题报告

Posted 杨鑫newlfe

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode --- 1588. Sum of All Odd Length Subarrays 解题报告相关的知识,希望对你有一定的参考价值。

Given an array of positive integers arr, return the sum of all possible odd-length subarrays of arr.

subarray is a contiguous subsequence of the array.

Example 1:

Input: arr = [1,4,2,5,3]
Output: 58
Explanation: The odd-length subarrays of arr and their sums are:
[1] = 1
[4] = 4
[2] = 2
[5] = 5
[3] = 3
[1,4,2] = 7
[4,2,5] = 11
[2,5,3] = 10
[1,4,2,5,3] = 15
If we add all these together we get 1 + 4 + 2 + 5 + 3 + 7 + 11 + 10 + 15 = 58

Example 2:

Input: arr = [1,2]
Output: 3
Explanation: There are only 2 subarrays of odd length, [1] and [2]. Their sum is 3.

Example 3:

Input: arr = [10,11,12]
<

以上是关于LeetCode --- 1588. Sum of All Odd Length Subarrays 解题报告的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode --- 1588. Sum of All Odd Length Subarrays 解题报告

1588. 所有奇数长度子数组的和前缀和

LeetCode 1480. 一维数组的动态和 / 1588. 所有奇数长度子数组的和 / 528. 按权重随机选择(随机化)

#Leetcode# 404. Sum of Left Leaves

LeetCode Sum of Square Numbers

Leetcode 404. Sum of Left Leaves