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;
}
};
posted on
2017-02-01 01:31Tonix
阅读(158)
评论(0)
收藏举报