贪心:主要是考虑比较函数的写法:
bool cmp(hzw a,hzw b) { if (a.l==b.l) return a.r<b.r; else return a.l>b.l; }
具体画一下就看出来了