91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

leetCode 303. Range Sum Query - Immutable | Dynamic Programming

發布時間:2020-06-27 17:35:21 來源:網絡 閱讀:392 作者:313119992 欄目:開發技術

303. Range Sum Query - Immutable 

Given an integer array nums, find the sum of the elements between indices i and j (i ≤ j), inclusive.

Example:

Given nums = [-2, 0, 3, -5, 2, -1]

sumRange(0, 2) -> 1
sumRange(2, 5) -> -1
sumRange(0, 5) -> -3


Note:

  1. You may assume that the array does not change.

  2. There are many calls to sumRange function.

題目大意:求數組一個連續子集的和。

思路:

1.可以直接找到數組子集的起始位置,連續相加到終止位置,

就可以得到答案。這樣的話,沒計算一次都要連續相加,比較麻煩。所以想到下面的思路。

2.用一個數組來存放當前元素的之前元素的和。

例如:

vector<int> source,源數組

vector<int> preITotal,用來存放source前i個元素的和,包括第i個元素。

以后每次計算范圍源數組[i,j]范圍子集的和,preITotal[j] - preITotal[i-1].計算即可。



代碼如下:

class NumArray {
private:
    vector<int> preITotal;//存放前i個元素的和
public:
    NumArray(vector<int> &nums) {
        if(nums.empty())
            return;
        preITotal.push_back(nums[0]);
        for(int i = 1; i < nums.size(); ++i)
            preITotal.push_back(preITotal[i-1] + nums[i]);
    }

    int sumRange(int i, int j) {
        if(0 == i)
            return preITotal[j];
        return preITotal[j] - preITotal[i - 1];
    }
};


// Your NumArray object will be instantiated and called as such:
// NumArray numArray(nums);
// numArray.sumRange(0, 1);
// numArray.sumRange(1, 2);

總結:

題目標注為動態規劃,開始怎么也想不出哪里用到動態規劃的思想了。當把當前的結果記錄下來,以后使用這一點,和動態規劃掛鉤了。


2016-08-31 22:42:39

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

吴江市| 民县| 博罗县| 博爱县| 达孜县| 镶黄旗| 牙克石市| 建平县| 文水县| 布拖县| 安义县| 临猗县| 竹溪县| 井陉县| 崇仁县| 孟村| 高邮市| 万州区| 定日县| 商都县| 襄樊市| 保山市| 穆棱市| 固始县| 四会市| 湄潭县| 邻水| 广安市| 井研县| 博罗县| 金溪县| 义乌市| 阜康市| 望谟县| 莒南县| 湖州市| 漾濞| 长沙市| 金塔县| 囊谦县| 许昌县|