leetcode 57. 插入区间

57. 插入区间

给出一个无重叠的 ,按照区间起始端点排序的区间列表。

在列表中插入一个新的区间,你需要确保列表中的区间仍然有序且不重叠(如果有必要的话,可以合并区间)。
示例 1:

输入: intervals = [[1,3],[6,9]], newInterval = [2,5]
输出: [[1,5],[6,9]]
示例 2:

输入: intervals = [[1,2],[3,5],[6,7],[8,10],[12,16]], newInterval = [4,8]
输出: [[1,2],[3,10],[12,16]]
解释: 这是因为新的区间 [4,8] 与 [3,5],[6,7],[8,10] 重叠。

想法很简单...扫一遍,然后落入区间的时候更改插入区间的值范围,最后如果区间符合条件就插入..O(N)的复杂度.

#
# @lc app=leetcode.cn id=57 lang=python
#
# [57] 插入区间
#

# @lc code=start
class Solution(object):
    def insert(self, intervals, newInterval):
        """
        :type intervals: List[List[int]]
        :type newInterval: List[int]
        :rtype: List[List[int]]
        """
        # sorted(intervals, key=lambda x: x[0])
        new = []
        mark = True
        for pos in intervals:
            if pos[1]newInterval[1]:
                if mark:
                    mark = False
                    new.append(newInterval)
                new.append(pos)
            if pos[0]<=newInterval[0] and pos[1]>=newInterval[0]:
                newInterval[0] = pos[0]
            if pos[1]>=newInterval[1] and pos[0]<= newInterval[1]:
                newInterval[1] = pos[1]
            # print newInterval
        if mark:
            new.append(newInterval)
        # print new,newInterval
        return new

你可能感兴趣的:(leetcode 57. 插入区间)