CodeWar::Sum of Intervals

Write a function called sumIntervals/sum_intervals() that accepts an array of intervals, and returns the sum of all the interval lengths. Overlapping intervals should only be counted once.

Intervals

Intervals are represented by a pair of integers in the form of an array. The first value of the interval will always be less than the second value. Interval example: [1, 5] is an interval from 1 to 5. The length of this interval is 4.

Overlapping Intervals

List containing overlapping intervals:

[
[1,4],
[7, 10],
[3, 5]
]

The sum of the lengths of these intervals is 7. Since [1, 4] and [3, 5] overlap, we can treat the interval as [1, 5], which has a length of 4.

Examples:

sum_intervals( {
{1,2},
{6, 10},
{11, 15}
} ); // => 9

sum_intervals( {
{1,4},
{7, 10},
{3, 5}
} ); // => 7

sum_intervals( {
{1,5},
{10, 20},
{1, 6},
{16, 19},
{5, 11}
} ); // => 19

我的思路是

  1. 创建一个limits容器存储pair
  2. 对输入每一条pair检查是否与limits里的pair有重叠的地方,如果有,记录下位置存入overlap
  3. 将limits里对应的条目删去,在重合的条目中寻找最小的下限和最大的上限,插入limits中
  4. 最后计算intervals

我在自己的ide中运行正常,但是在codewars提交之后在某些情况下出错,code139,是越界之类的问题。
一开始我是用vector来存储limits的,由于涉及到删除元素的问题,特意还用overlap来记录迭代器,循环之后一起删除,经过排除还是发现删除元素后迭代器失效的问题,如上第3步。于是改用list。
这次的经历更深刻的告诉我要注意迭代器失效的问题。

具体代码:

#include <vector>
#include <utility>
#include <list>
using namespace std;

int sum_intervals(std::vector<std::pair<int, int>> intervals) {
    list<pair<int,int>> limits,tmp;
    int tmpmin,tmpmax,res=0;
    vector<list<pair<int,int>>::iterator> overlap;
    if(intervals.size() == 0) return 0;

    for(auto interval : intervals){

       overlap.clear();
       tmp.clear();
       
       for(auto it = limits.begin();it!=limits.end();it++){
            if((interval.first>=(*it).first && interval.first<(*it).second) ||
               (interval.second>(*it).first && interval.second<=(*it).second) ||
               (interval.first<=(*it).first && interval.second>=(*it).second)){
                overlap.push_back(it);
                tmp.push_back(*it);
            }
        }
        tmp.push_back(interval);
        if(overlap.size()!=0){
            for(auto del_it : overlap) {limits.erase(del_it);}
            tmpmin=(*tmp.begin()).first;
            tmpmax=(*tmp.begin()).second;
            for(auto tmp_it = tmp.begin();tmp_it!=tmp.end();tmp_it++){
                if(tmpmin>(*tmp_it).first) tmpmin = (*tmp_it).first;
                if(tmpmax<(*tmp_it).second) tmpmax =(*tmp_it).second;
            }
            limits.push_back(make_pair(tmpmin,tmpmax));
        }
        else limits.push_back(interval);
    }
    
    for (auto limit:limits){
        res+=(limit.second-limit.first);
    }
    return res;
}

·提交之后,欣赏一下其他人的解答:

  1. 使用了set的无重复性,统计区间内的所有整数,最后返回set的size。如果数的范围大的话,浪费内存,将两个数表示的区间,生成了非常多元素的set。
#include <vector>
#include <utility>
#include <unordered_set>

int sum_intervals(std::vector<std::pair<int, int>> intervals) {
  
  std::unordered_set<int> ints;
  for (auto interv = intervals.begin(); interv != intervals.end(); ++interv){
    for (int i = interv->first; i < interv->second; i++){
      ints.insert(i);
    }
  }

return ints.size();
}
  1. 先进行了排序,再维护一个max_right。即可计算结果。这个答案比较好。
#include <vector>
#include <utility>

int sum_intervals(std::vector<std::pair<int, int>> interavls) {
  sort(interavls.begin(), interavls.end());
  int ret = 0;
  int max_right = interavls[0].first;
  for (auto &i : interavls)
       if (i.second >= max_right) {
           ret += i.second - std::max(max_right, i.first);
           max_right = i.second;
       }
  return ret;
}
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 201,312评论 5 473
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 84,578评论 2 377
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 148,337评论 0 333
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,134评论 1 272
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,161评论 5 363
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,303评论 1 280
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,761评论 3 393
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,421评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,609评论 1 295
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,450评论 2 317
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,504评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,194评论 3 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,760评论 3 303
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,836评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,066评论 1 257
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,612评论 2 348
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,178评论 2 341

推荐阅读更多精彩内容

  • rljs by sennchi Timeline of History Part One The Cognitiv...
    sennchi阅读 7,274评论 0 10
  • Introduction What is Bowtie 2? Bowtie 2 is an ultrafast a...
    wzz阅读 5,553评论 0 5
  • “人这一辈子谁还不会遇到点什么事啊。有时候是好事,有时候是坏事。坏事来了就得学会忍受,尤其当你无法改变它...
    可苡_菲菲阅读 729评论 2 7
  • Ruby 中使用 mixin 优雅的解决了 multiple inheritance 问题。在 Java 世界中使...
    lvjian700阅读 3,438评论 0 7
  • 下午四点多决定让自己失恋吧!一路回家的环路车上听着一首Faded想着心事。想了想08年离婚大概用了五个月心不...
    塰謿阅读 383评论 0 0