码迷,mamicode.com
首页 > 其他好文 > 详细

LeetCode "Teemo Attacking"

时间:2017-02-01 10:34:13      阅读:226      评论:0      收藏:0      [点我收藏+]

标签:eem   turn   public   cto   tac   tco   ack   for   tor   

Isn‘t it ‘Easy‘?

class Solution {
public:
    int findPoisonedDuration(vector<int>& ts, int d) 
    {
        int ret = 0, s = 0, e = 0;
        for(auto t : ts)
        {
            if(t > e) 
            {
                ret += e - s;
                s = t;
            }
            
            e = t + d;
        }
        ret += e - s;
        
        return ret;
    }
};

 

LeetCode "Teemo Attacking"

标签:eem   turn   public   cto   tac   tco   ack   for   tor   

原文地址:http://www.cnblogs.com/tonix/p/6359711.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!