#include <bits/stdc++.h> using namespace std; //判断是否有交集 bool help0(vector<long long>& vec1, vector<long long>& vec2){ if(vec1[0] < vec2[0] && vec1[1] < vec2[0]){ return false; } if(vec1[0] > vec2[1] && vec1[1] > vec2[1]){ ...