1176. Diet Plan Performance

原題鏈接:Diet Plan Performance
LeetCode 最簡單的Sliding Window題目抵代。

A dieter consumes calories[i] calories on the i-th day.
Given an integer k, for every consecutive sequence of k days (calories[i], calories[i+1], ..., calories[i+k-1] for all 0 <= i <= n-k), they look at T, the total calories consumed during that sequence of k days (calories[i] + calories[i+1] + ... + calories[i+k-1]):
If T < lower, they performed poorly on their diet and lose 1 point;
If T > upper, they performed well on their diet and gain 1 point;
Otherwise, they performed normally and there is no change in points.
Initially, the dieter has zero points. Return the total number of points the dieter has after dieting for calories.length days.
Note that the total points can be negative.

想法十分地簡單粗暴,遍歷整個(gè)calories array, 用兩指針分別指向一子array的頭和尾钾虐,每次使用一個(gè)private method來遍歷這個(gè)子array獲得sum鞭光,然后判斷該sum與lower bound/upper bound的關(guān)系來累計(jì)得分吏廉。時(shí)間復(fù)雜度是O(N)xO(k)也就是O(N),空間復(fù)雜度是O(1)惰许。

class Solution {
    public int dietPlanPerformance(int[] calories, int k, int lower, int upper) {
        if (calories == null || calories.length < k || k == 0
           || lower > upper) {
            return 0;
        }
        
        int score = 0;
        int start = 0;
        int end = k - 1;
        while (end < calories.length) {
            int total = sumUpCalories(start, end, calories);
            if (total < lower) {
                score--;
            } else if (total > upper) {
                score++;
            }
            start++;
            end++;
        }
        
        return score;
    }
    
    private int sumUpCalories (int start, int end, int[] calories) {
        int total = 0;
        for (int i = start; i <= end; i++) {
            total += calories[i];
        }
        
        return total;
    }
}

但提交完之后發(fā)現(xiàn)Runtime達(dá)到了649ms席覆,只比18.12% Java solution 快。內(nèi)存占用了45.3MB汹买,少于100%的Java solution佩伤。
參考了一下LeetCode論壇上的答案,發(fā)現(xiàn)還可以優(yōu)化的地方在于:計(jì)算sum的時(shí)候其實(shí)不需要每次都遍歷一次子數(shù)組卦睹,只要把left entry拿掉畦戒,再加入right entry即可。而且因?yàn)樽訑?shù)組的長度是固定的结序,也不需要維護(hù)兩個(gè)指針障斋,只要知道最左或者最右一個(gè)指針就夠了。而且每次都遍歷子數(shù)組的做法也不符合sliding window的基本思想吧(我猜)徐鹤。
改良之后版本Runtime降到了1ms垃环。Memory usage pretty much stays the same.

class Solution {
    public int dietPlanPerformance(int[] calories, int k, int lower, int upper) {
        if (calories == null || calories.length < k || k == 0
           || lower > upper) {
            return 0;
        }
        
        int score = 0;
        int total = 0;
        int start = 0;
        
        for (int i = 0; i < k; i++) {
            total += calories[i];
        }
        if (total < lower) {
            score--;
        }
        if (total > upper) {
            score++;
        }
        
        for (int i = k; i < calories.length; i++) {
            total += calories[i];
            total -= calories[start++];
            
            if (total < lower) {
                score--;
            }
            if (total > upper) {
                score++;
            }
        }
        
        return score;
    }
}
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市返敬,隨后出現(xiàn)的幾起案子遂庄,更是在濱河造成了極大的恐慌,老刑警劉巖劲赠,帶你破解...
    沈念sama閱讀 206,968評(píng)論 6 482
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件涛目,死亡現(xiàn)場離奇詭異秸谢,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)霹肝,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,601評(píng)論 2 382
  • 文/潘曉璐 我一進(jìn)店門估蹄,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人沫换,你說我怎么就攤上這事臭蚁。” “怎么了讯赏?”我有些...
    開封第一講書人閱讀 153,220評(píng)論 0 344
  • 文/不壞的土叔 我叫張陵垮兑,是天一觀的道長。 經(jīng)常有香客問我漱挎,道長系枪,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 55,416評(píng)論 1 279
  • 正文 為了忘掉前任识樱,我火速辦了婚禮嗤无,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘怜庸。我一直安慰自己当犯,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,425評(píng)論 5 374
  • 文/花漫 我一把揭開白布割疾。 她就那樣靜靜地躺著嚎卫,像睡著了一般。 火紅的嫁衣襯著肌膚如雪宏榕。 梳的紋絲不亂的頭發(fā)上拓诸,一...
    開封第一講書人閱讀 49,144評(píng)論 1 285
  • 那天,我揣著相機(jī)與錄音麻昼,去河邊找鬼奠支。 笑死,一個(gè)胖子當(dāng)著我的面吹牛抚芦,可吹牛的內(nèi)容都是我干的倍谜。 我是一名探鬼主播,決...
    沈念sama閱讀 38,432評(píng)論 3 401
  • 文/蒼蘭香墨 我猛地睜開眼叉抡,長吁一口氣:“原來是場噩夢啊……” “哼尔崔!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起褥民,我...
    開封第一講書人閱讀 37,088評(píng)論 0 261
  • 序言:老撾萬榮一對(duì)情侶失蹤季春,失蹤者是張志新(化名)和其女友劉穎,沒想到半個(gè)月后消返,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體载弄,經(jīng)...
    沈念sama閱讀 43,586評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡耘拇,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,028評(píng)論 2 325
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了侦锯。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片驼鞭。...
    茶點(diǎn)故事閱讀 38,137評(píng)論 1 334
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖尺碰,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情译隘,我是刑警寧澤亲桥,帶...
    沈念sama閱讀 33,783評(píng)論 4 324
  • 正文 年R本政府宣布,位于F島的核電站固耘,受9級(jí)特大地震影響题篷,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜厅目,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,343評(píng)論 3 307
  • 文/蒙蒙 一番枚、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧损敷,春花似錦葫笼、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,333評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至诱桂,卻和暖如春洋丐,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背挥等。 一陣腳步聲響...
    開封第一講書人閱讀 31,559評(píng)論 1 262
  • 我被黑心中介騙來泰國打工友绝, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人肝劲。 一個(gè)月前我還...
    沈念sama閱讀 45,595評(píng)論 2 355
  • 正文 我出身青樓迁客,卻偏偏與公主長得像,于是被迫代替她去往敵國和親涡相。 傳聞我的和親對(duì)象是個(gè)殘疾皇子哲泊,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,901評(píng)論 2 345