checkio Merge Intervals

题目:
You are given a sequence of intervals, as tuples of ints where the tuples are sorted by their first element in ascending order.
It is your task to minimize the number of intervals by merging those that intersect or by removing intervals fitting into another one.

Since the range of values for the intervals is restricted to integers, you must also merge those intervals between which no value can be found.

An example:
Let’s say you’ve got these 5 intervals: 1…6, 3…5, 7…10, 9…12 and 14…16.

1…6 and 3…5
3…5 fits into 1…6, so 3…5 must disappear.
1…6 and 7…10
Even though the intervals do not intersect, there can not be a value of type int between them, so they have to be merged to the new interval 1…10.
1…10 and 9…12
These intervals do intersect, because 9 < 10, so they have to be merged to the new interval 1…12.
1…12 and 14…16
These two intervals do not intersect, so they must not be merged.
So the intervals to be returned are:
1…12 and 14…16
Input: A sequence of intervals as a list of tuples of 2 ints, sorted by their first element.

Output: The merged intervals as a list of tuples of 2 ints, sorted by their first element.

Examples:
merge_intervals([(1, 4), (2, 6), (8, 10), (12, 19)]) == [(1, 6), (8, 10), (12, 19)]
merge_intervals([(1, 12), (2, 3), (4, 7)]) == [(1, 12)]
merge_intervals([(1, 5), (6, 10), (10, 15), (17, 20)]) == [(1, 15), (17, 20)]
链接:
https://py.checkio.org/en/mission/merge-intervals/

代码:

def merge_intervals(intervals):
    aa = list(set(intervals))
    a = sorted(aa, key = lambda x: x[0])
    b = []
    x = []
    def new(a,b,x):
        for i in range(0,len(a)-1):
    		for j in range(i+1, len(a)):
    			if  a[j][1] <= a[i][1] and a[i] not in b and a[i] not in x:
    				b.append(a[i])
    				x.append(a[j])				
    				if a[j] in b:
    					b.remove(a[j])					
    			elif a[j][0] <= a[i][1]+1 and a[j][1] >= a[i][1] and (a[i][0], a[j][1]) not in b and (a[i][0], a[j][1]) not in x:
    				b.append((a[i][0], a[j][1]))
    				x.append(a[j])
    				x.append(a[i])
    				if a[j] in b:
    					b.remove(a[j])
    				if a[i] in b:
    					b.remove(a[i])			
    			elif a[i][0] == a[j][0] and a[i][1] >= a[j][1] and a[i] not in b and a[i] not in x:
    				b.append(a[i])
    				x.append(a[j])
    				if a[j] in b:
    					b.remove(a[j])
    
    			elif a[i][0] == a[j][0] and a[i][1] < a[j][1] and a[j] not in b and a[j] not in x:				
    				b.append(a[j])
    				x.append(a[i])				
    				if a[i] in b:
    					b.remove(a[i])
    			elif a[j][0] > a[i][1]+1:
    				if a[i] not in b and a[i] not in x:
    					b.append(a[i])
    				if a[j] not in b and a[j] not in x:
    					b.append(a[j])
    	b = sorted(b, key = lambda x: x[0])
    	if b == a or len(b) == 1:
    		return b
    	else:
    		return new(b,[],[])
    if len(aa) == 1:
        return aa
    else:
        return new(a,b,x)
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值