记录编号 260776 评测结果 AAAAAAAAAAAAAAAAAAAAA
题目名称 [HAOI 2014]贴海报 最终得分 100
用户昵称 Gravatarliu_runda 是否通过 通过
代码语言 C++ 运行时间 0.010 s
提交时间 2016-05-14 11:36:50 内存使用 0.44 MiB
显示代码纯文本
  1. #include<cstdio>
  2. #include<cctype>
  3. #include<algorithm>
  4. #define lch(x) x<<1
  5. #define rch(x) x<<1|1
  6. #define prt(x) x>>1
  7. using namespace std;
  8. const int maxn=10005;
  9. struct poster{
  10. int l,r;
  11. }lst[maxn];
  12. int read(){
  13. int x;char ch;
  14. while(ch=getchar(),!isdigit(ch));
  15. x=ch-'0';
  16. while(ch=getchar(),isdigit(ch))x=x*10+ch-'0';
  17. return x;
  18. }
  19. int seq[maxn*2];int top=1;
  20. int pos(int x){
  21. return x>0?lst[x].l:lst[-x].r;
  22. }
  23. bool cmp(const int &a,const int &b){
  24. return pos(a)<pos(b);
  25. }
  26. bool seen[maxn];
  27. int heap[maxn];int _size=1;
  28. bool empty(){
  29. return _size==1;
  30. }
  31. void swap(int &a,int &b){
  32. a^=b^=a^=b;
  33. }
  34. void insert(int x){
  35. heap[_size++]=x;
  36. int p,rt=_size-1;;
  37. while((p=prt(rt))&&heap[p]<heap[rt]){
  38. swap(heap[p],heap[rt]);
  39. rt=p;
  40. }
  41. }
  42. void remove(){
  43. heap[0]=heap[--_size];
  44. if(empty())return;
  45. int rt=0;
  46. while(rch(rt)<_size){
  47. int flag=(heap[lch(rt)]>heap[rt]?1:0)+(heap[rch(rt)]>heap[rt]?2:0);
  48. if(!flag)return;
  49. if(flag==1){
  50. swap(heap[rt],heap[lch(rt)]);
  51. rt=lch(rt);
  52. }else if(flag==2){
  53. swap(heap[rt],heap[rch(rt)]);
  54. rt=rch(rt);
  55. }else if(heap[lch(rt)]>heap[rch(rt)]){
  56. swap(heap[rt],heap[lch(rt)]);
  57. rt=lch(rt);
  58. }else{
  59. swap(heap[rt],heap[rch(rt)]);
  60. rt=rch(rt);
  61. }
  62. }
  63. if(lch(rt)<_size&&heap[lch(rt)]>heap[rt])swap(heap[rt],heap[lch(rt)]);
  64. }
  65. int main(){
  66. freopen("ha14d.in","r",stdin);
  67. freopen("ha14d.out","w",stdout);
  68. int n;
  69. read();//海报墙的长度不要了
  70. n=read();
  71. for(int i=1;i<=n;++i){
  72. lst[i].l=read();lst[i].r=read()+1;
  73. seq[top++]=i;
  74. seq[top++]=-i;
  75. }
  76. sort(seq+1,seq+top,cmp);
  77. int cnt=0;
  78. for(int i=0;i<top;++i){
  79. if(!empty()&&!seen[heap[1]]&&pos(seq[i-1])!=pos(seq[i])){
  80. seen[heap[1]]=true;
  81. cnt++;
  82. }
  83. if(seq[i]>0)insert(seq[i]);
  84. while(!empty()&&lst[heap[1]].r<=pos(seq[i]))remove();
  85. }
  86. printf("%d",cnt);
  87. fclose(stdin);fclose(stdout);
  88. return 0;
  89. }
  90. /*
  91. 1000 4
  92. 1 100
  93. 50 80
  94. 80 99
  95. 50 98
  96.  
  97. */