经典的splay维护凸壳,但是看了看zky学长的题解最后决定写线段树维护标记永久化。

Round1考到了这个之后一直没有理解标记永久化,CTSC也因为自己的缺陷丢掉了一些部分分,so sad

看来以后不懂的东西要及时学啊QwQ

  1. #include<cstdio>
  2. #include<cstring>
  3. #include<algorithm>
  4. using namespace std;
  5. struct node {
  6. double k, b; bool p;
  7. node(int xa = 0, int ya = 0, int xb = 0, int yb = 0, bool num = 0) {
  8. p = num;
  9. if (xa == xb) {k = 0; b = max(ya, yb);}
  10. else {k = (ya - yb) / (xa - xb); b = ya - xa * k;}
  11. }
  12. double get(int x) {return k * x + b;}
  13. };
  14. bool lessthan(node A, node B, double x) {
  15. if (!A.p) return 1;
  16. double na = A.get(x), nb = B.get(x);
  17. return na == nb ? A.p < B.p : na < nb;
  18. }
  19.  
  20. int n = 50000;
  21. node T[200003];
  22. node Q(int rt, int l, int r, int pos) {
  23. if (l == r) return T[rt];
  24. node tmp; int mid = (l + r) >> 1;
  25. tmp = (pos <= mid) ? Q(rt << 1, l, mid, pos) : Q(rt << 1 | 1, mid + 1, r, pos);
  26. return lessthan(T[rt], tmp, pos) ? tmp : T[rt];
  27. }
  28. void ins2(int rt, int l, int r, node se) {
  29. if (!T[rt].p) {T[rt] = se; return;}
  30. if (lessthan(T[rt], se, l)) swap(T[rt], se);
  31. if (l == r || T[rt].k == se.k) return; //!!!
  32. double x = (T[rt].b - se.b) / (se.k - T[rt].k); int mid = (l + r) >> 1;
  33. if (x < l || x > r) return;
  34. if (x <= mid) ins2(rt << 1, l, mid, T[rt]), T[rt] = se; else ins2(rt << 1 | 1, mid + 1, r, se);
  35. }
  36. void ins1(int rt, int l, int r, int L, int R, node se) {
  37. if (L <= l && r <= R) {ins2(rt, l, r, se); return;}
  38. int mid = (l + r) >> 1;
  39. if (L <= mid) ins1(rt << 1, l, mid, L, R, se);
  40. if (R > mid) ins1(rt << 1 | 1, mid + 1, r, L, R, se);
  41. }
  42.  
  43. int main() {
  44. double S, P; node tmp; int T, pos; scanf("%d", &T); char c[15];
  45. while (~scanf("%s", c)) {
  46. if (c[0] == 'Q') {
  47. scanf("%d", &pos);
  48. printf("%lld\n", (long long) (Q(1, 1, n, pos).get(pos) / 100 + 1e-8));
  49. } else {
  50. scanf("%lf%lf", &S, &P);
  51. tmp.k = P; tmp.b = S - P; tmp.p = 1;
  52. ins1(1, 1, n, 1, n, tmp);
  53. }
  54. }
  55. return 0;
  56. }

Round2加油吧ovo

【BZOJ 1568】【JSOI 2008】Blue Mary开公司的更多相关文章

  1. [BZOJ 1568][JSOI2008]Blue Mary开公司

    [BZOJ 1568][JSOI2008]Blue Mary开公司 题意 \(n\) 次操作, 维护一个一次函数集合 \(S\). 有两种操作: 给定 \(b\) 和 \(k\), 向 \(S\) 中 ...

  2. 数据结构(线段树):BZOJ 1568 [JSOI2008]Blue Mary开公司

    1568: [JSOI2008]Blue Mary开公司 Time Limit: 15 Sec  Memory Limit: 162 MBSubmit: 602  Solved: 214[Submit ...

  3. bzoj 1568 [JSOI2008]Blue Mary开公司 超哥线段树

    [JSOI2008]Blue Mary开公司 Time Limit: 15 Sec  Memory Limit: 162 MBSubmit: 1808  Solved: 639[Submit][Sta ...

  4. bzoj千题计划219:bzoj1568: [JSOI2008]Blue Mary开公司

    http://www.lydsy.com/JudgeOnline/problem.php?id=1568 写多了就觉着水了... #include<cstdio> #include< ...

  5. 1568: [JSOI2008]Blue Mary开公司

    1568: [JSOI2008]Blue Mary开公司 题目描述 传送门 题目分析 简单分析可以发现就是不停给出了\(n\)条直线,要求每次给出一条直线后求出所有直线在横坐标为\(x\)时\(y\) ...

  6. 1568: [JSOI2008]Blue Mary开公司(超哥线段树)

    1568: [JSOI2008]Blue Mary开公司 Time Limit: 15 Sec  Memory Limit: 162 MBSubmit: 1198  Solved: 418 Descr ...

  7. 【BZOJ-1568】Blue Mary开公司 李超线段树 (标记永久化)

    1568: [JSOI2008]Blue Mary开公司 Time Limit: 15 Sec  Memory Limit: 162 MBSubmit: 557  Solved: 192[Submit ...

  8. 【BZOJ1568】[JSOI2008]Blue Mary开公司(李超线段树)

    [BZOJ1568][JSOI2008]Blue Mary开公司(李超线段树) 题面 BZOJ 洛谷 题解 是模板题啊. #include<iostream> #include<cs ...

  9. 【BZOJ1568】[JSOI2008]Blue Mary开公司 线段树

    [BZOJ1568][JSOI2008]Blue Mary开公司 Description Input 第一行 :一个整数N ,表示方案和询问的总数.  接下来N行,每行开头一个单词“Query”或“P ...

  10. [Luogu] P4254 [JSOI2008]Blue Mary开公司

    题目背景 Blue Mary 最近在筹备开一家自己的网络公司.由于他缺乏经济头脑,所以先后聘请了若干个金融顾问为他设计经营方案. 题目描述 万事开头难,经营公司更是如此.开始的收益往往是很低的,不过随 ...

随机推荐

  1. Adobe Air移动开发本人体会

    采用FLASH BUILD4.6开发 1.没有mx:Canvas了,s:BordContainer未经手机优化,也不敢用,只有用s:Group 2.好多控件没有了,如DropDownList,Prog ...

  2. offsetLeft与offsetTop详解

    offsetLeft与offsetTop使用方法一样,只是一个是找距离定位父级(position:relative)左边的距离,一个是找距离定位父级上边的距离 没有定位则找body,我们还是看看ie7 ...

  3. JDK7中的新特性 The try-with-resources Statement

    https://docs.oracle.com/javase/tutorial/essential/exceptions/tryResourceClose.html 类似于这样的代码 try ( By ...

  4. Hibernate总结1(入门)

    1,官网包简介 整体简介 Project包简介,这个包里有etc文件,这个etc主要包括了配置文件,最主要的是hibernate.cfg.xml文件 lib文件夹包含的是需要加载的依赖jar包,必须加 ...

  5. usb驱动开发12之设备生命线

    函数usb_control_msg完成一些初始化后调用了usb_internal_control_msg之后就free urb.剩下的活,全部留给usb_internal_control_msg去做了 ...

  6. shell 使用

    echo -e "1\t2\t3" #-e echo -e "\e[1;31m This is red text \e[0m" #color echo -e & ...

  7. ASP.NT运行原理和页面生命周期详解及其应用

    ASP.NT运行原理和页面生命周期详解及其应用 1. 下面是我画的一张关于asp.net运行原理和页面生命周期的一张详解图.如果你对具体不太了解,请参照博客园其他帖子.在这里我主要讲解它的实际应用.  ...

  8. 基于DDD的.NET开发框架 - ABP工作单元(Unit of Work)

    返回ABP系列 ABP是“ASP.NET Boilerplate Project (ASP.NET样板项目)”的简称. ASP.NET Boilerplate是一个用最佳实践和流行技术开发现代WEB应 ...

  9. 此utf8 非彼utf8 ——谈http协议里的编码问题

    我这里看两个编码: BDPAGETYPE:2BDQID:0xc92b034d0bc985e8BDUSERID:809441751 Cache-Control:private Connection:Ke ...

  10. DEV winform treelist设置背景图像

    treelist是一个复杂的控件,包括选中行,奇偶行等均可以单独设置显示效果,空白区域上背景图像的代码如下: private void treeList1_CustomDrawEmptyArea(ob ...