记录编号 431750 评测结果 AAAAAAAAAA
题目名称 [HAOI 2011]问题A 最终得分 100
用户昵称 GravatarCSU_Turkey 是否通过 通过
代码语言 C++ 运行时间 0.395 s
提交时间 2017-08-01 18:18:53 内存使用 4.13 MiB
显示代码纯文本
  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. int n,f[100005];
  4. struct t
  5. {
  6. int l,r,cost;
  7. bool operator < (const t &b)const{
  8. return l<b.l;
  9. }
  10. }e[100005];
  11. map<int,int>s[100005];
  12. int main()
  13. {
  14. freopen("a.in","r",stdin);
  15. freopen("a.out","w",stdout);
  16. // freopen("1.txt","r",stdin);
  17. scanf("%d",&n);
  18. int h=0;
  19. for(int i=1;i<=n;i++)
  20. {
  21. int x,y;
  22. scanf("%d%d",&x,&y);
  23. x++;
  24. y=n-y;
  25. if(s[x].find(y)==s[x].end())
  26. {
  27. e[++h].cost=1;
  28. e[h].l=x;
  29. e[h].r=y;
  30. s[x][y]=h;
  31. }
  32. else
  33. {
  34. e[s[x][y]].cost++;
  35. }
  36. }
  37. for(int i=1;i<=h;i++)
  38. {
  39. e[i].cost=min(e[i].cost,e[i].r-e[i].l+1);
  40. e[i].cost=max(e[i].cost,0);
  41. }
  42. sort(e+1,e+h+1);
  43. int o=1;
  44. for(int i=1;i<=n;i++)
  45. {
  46. f[i]=max(f[i-1],f[i]);
  47. while(e[o].l==i)
  48. {
  49. f[e[o].r]=max(f[e[o].r],f[i-1]+e[o].cost);
  50. o++;
  51. }
  52. }
  53. // for(int i=1;i<=n;i++)cout<<f[i]<<" ";
  54. cout<<n-f[n];
  55. return 0;
  56. }