摘要: #include<stdio.h>#include<iostream>#include<cstdlib>using namespace std;struct st{ int l; int r;} a[5003];int visit[5002];int cmp(const void *a,const void *b){ struct st *p=(st*)a; struct st *q=(st*)b; if(p->l!=q->l) return p->l-q->l; else return p->r-q->r;}int ma 阅读全文
posted @ 2013-04-09 16:24 芷水 阅读(187) 评论(0) 推荐(0) 编辑