摘要: /* 排序,区间合并 */ #include <iostream> #include <fstream> using namespace std; struct ACT{ int begin; int end; }act[100000]; int cmp(const void *a,const void *b) { return ((struct ACT *)a)->begin-((struct ... 阅读全文