赞
踩
from typing import List def merge(intervals: List[List[int]]) -> List[List[int]]: # 按照第一个元素从小到大进行排序 intervals.sort(key=lambda x: x[0]) # 初始化一个新的数组 new_list = list() for i in intervals: # 把第一个数组元素添加到新的数组 if not new_list: new_list.append(i) continue # 如果有重合 就合并 if new_list[-1][1] >= i[0]: x = max(new_list[-1][1], i[1]) new_list[-1][1] = max(new_list[-1][1], i[1]) # 如果没有重合 就直接添加到新的数组 else: new_list.append(i) return new_list L,M = map(int,input().split()) a = [] for _ in range(M): a.append(list(map(int,input().split()))) new_a = merge(a) sum = 0 for elem in new_a: sum += elem[1]-elem[0]+1 print(L+1-sum)
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。