A Villages: Landlines 比赛时候写出来的,但是自己最初对题意的理解很不到位,想的很复杂,多亏队友想出来的思路,以后还要继续多练 #include<bits/stdc++.h> using namespace std; #define int long long const int N = 2e5 + 10; struct edge{ int t, R, l, r; bool operator<(const edge &y) const{ return l < y.l; } }ed[N]; int n, m; int ...