第一题直接AC没占出来… 第二题,结束时间排序+dp python版本,结尾时间排序做 class mission: def __init__(self, l, r, w): self.l, self.r, self.w = l, r, w def main(): n = int(input()) if n < 1: return 0 M = [] for _ in range(n): l, r, w = map(int, input().split()) M.append(missio...