题解

这道题的结论很显然= =

就是暴力求的话,把一个区间的数排一下序,如果当前这个数大于前面所有数的前缀和+1,那么前缀和+1即我们所求的答案

那么我们设置一个当前答案(初始为1),在主席树上求出来小于这个答案的数的和是多少,设为t,如果t < ans,那么答案就是ans,如果t >= ans,那么设置ans = t + 1

容易发现,在两次操作之后ans必然翻倍,所以复杂度是\(O(M \log N \log \sum a_{i})\)

代码

  1. #include <bits/stdc++.h>
  2. #define MAXN 100005
  3. //#define ivorysi
  4. #define enter putchar('\n')
  5. #define space putchar(' ')
  6. #define fi first
  7. #define se second
  8. using namespace std;
  9. typedef long long int64;
  10. typedef double db;
  11. template<class T>
  12. void read(T &res) {
  13. res = 0;char c = getchar();T f = 1;
  14. while(c < '0' || c > '9') {
  15. if(c == '-') f = -1;
  16. c = getchar();
  17. }
  18. while(c >= '0' && c <= '9') {
  19. res = res * 10 + c - '0';
  20. c = getchar();
  21. }
  22. res *= f;
  23. }
  24. template<class T>
  25. void out(T x) {
  26. if(x < 0) {putchar('-');x = -x;}
  27. if(x >= 10) {
  28. out(x / 10);
  29. }
  30. putchar('0' + x % 10);
  31. }
  32. struct node {
  33. int sum;
  34. int lc,rc;
  35. }tr[MAXN * 40];
  36. int Ncnt,rt[MAXN];
  37. int N,a[MAXN],M,MK;
  38. void Insert(const int &x,int &y,int L,int R,int v) {
  39. y = ++Ncnt;
  40. tr[y] = tr[x];
  41. tr[y].sum += v;
  42. if(L == R) return;
  43. int mid = (L + R) >> 1;
  44. if(v <= mid) Insert(tr[x].lc,tr[y].lc,L,mid,v);
  45. else Insert(tr[x].rc,tr[y].rc,mid + 1,R,v);
  46. }
  47. void Init() {
  48. read(N);
  49. for(int i = 1 ; i <= N ; ++i) read(a[i]),MK = max(MK,a[i]);
  50. read(M);
  51. for(int i = 1 ; i <= N ; ++i) {
  52. Insert(rt[i - 1],rt[i],1,MK,a[i]);
  53. }
  54. }
  55. int query(int L,int R,int v) {
  56. L = rt[L - 1],R = rt[R];
  57. int l = 1,r = MK,res = 0;
  58. while(1) {
  59. if(l == r) {res += tr[R].sum - tr[L].sum;break;}
  60. int mid = (l + r) >> 1;
  61. if(v <= mid) {
  62. r = mid;
  63. L = tr[L].lc;R = tr[R].lc;
  64. }
  65. else {
  66. l = mid + 1;
  67. res += tr[tr[R].lc].sum - tr[tr[L].lc].sum;
  68. L = tr[L].rc;R = tr[R].rc;
  69. }
  70. }
  71. return res;
  72. }
  73. void Solve() {
  74. Init();
  75. int L,R;
  76. while(M--) {
  77. read(L);read(R);
  78. int ans = 1;
  79. while(1) {
  80. int t = query(L,R,ans);
  81. if(t >= ans) ans = t + 1;
  82. else break;
  83. }
  84. out(ans);enter;
  85. }
  86. }
  87. int main() {
  88. #ifdef ivorysi
  89. freopen("f1.in","r",stdin);
  90. #endif
  91. Solve();
  92. return 0;
  93. }

【LOJ】#2174. 「FJOI2016」神秘数的更多相关文章

  1. @loj - 2174@ 「FJOI2016」神秘数

    目录 @description@ @solution@ @accepted code@ @details@ @description@ 一个可重复数字集合 S 的神秘数定义为最小的不能被 S 的子集的 ...

  2. 「FJOI2016」神秘数 解题报告

    「FJOI2016」神秘数 这题不sb,我挺sb的... 我连不带区间的都不会哇 考虑给你一个整数集,如何求这个神秘数 这有点像一个01背包,复杂度和值域有关.但是你发现01背包可以求出更多的东西,就 ...

  3. loj2174 「FJOI2016」神秘数

    先考虑一下一个集合怎么用 \(O(n)\) 时间求出来,然后用主席树推广到一个序列就可以了.大致思想就是考虑一个数的权值和它前面的数的和的关系. #include <algorithm> ...

  4. LOJ 2172 「FJOI2016」所有公共子序列问题——序列自动机

    题目:https://loj.ac/problem/2172 在两个序列自动机上同时走,这样暴搜. 先走字典序小的字符,一边搜一边输出,就是按字典序排序的. 方案数很多,需要高精度?空间很小,要压位. ...

  5. LOJ 3094 「BJOI2019」删数——角标偏移的线段树

    题目:https://loj.ac/problem/3094 弱化版是 AGC017C . 用线段树维护那个题里的序列即可. 对应关系大概是: 真实值的范围是 [ 1-m , n+m ] :考虑设偏移 ...

  6. 【LOJ】#3094. 「BJOI2019」删数

    LOJ#3094. 「BJOI2019」删数 之前做atcoder做到过这个结论结果我忘了... em,就是\([1,n]\)之间每个数\(i\),然后\([i - cnt[i] + 1,i]\)可以 ...

  7. Loj #3089. 「BJOI2019」奥术神杖

    Loj #3089. 「BJOI2019」奥术神杖 题目描述 Bezorath 大陆抵抗地灾军团入侵的战争进入了僵持的阶段,世世代代生活在 Bezorath 这片大陆的精灵们开始寻找远古时代诸神遗留的 ...

  8. Loj #2542. 「PKUWC2018」随机游走

    Loj #2542. 「PKUWC2018」随机游走 题目描述 给定一棵 \(n\) 个结点的树,你从点 \(x\) 出发,每次等概率随机选择一条与所在点相邻的边走过去. 有 \(Q\) 次询问,每次 ...

  9. Loj #3056. 「HNOI2019」多边形

    Loj #3056. 「HNOI2019」多边形 小 R 与小 W 在玩游戏. 他们有一个边数为 \(n\) 的凸多边形,其顶点沿逆时针方向标号依次为 \(1,2,3, \ldots , n\).最开 ...

随机推荐

  1. bzoj4873 [Shoi2017]寿司餐厅

    Input 第一行包含两个正整数n,m,分别表示这家餐厅提供的寿司总数和计算寿司价格中使用的常数. 第二行包含n个正整数,其中第k个数ak表示第k份寿司的代号. 接下来n行,第i行包含n-i+1个整数 ...

  2. powerdesigner中物理模型与sql脚本的以及与数据库的连接设置

    使用JDBC连接失败的解决方案: http://blog.csdn.net/t37240/article/details/51595097 使用powerdesigner工具我们可以方便的根据需求分析 ...

  3. Creating a Cron Job in K8S

    Creating a Cron Job Cron jobs require a config file. This example cron job config .spec file prints ...

  4. Python学习笔记 (十二)偏函数

    摘抄:https://www.liaoxuefeng.com/wiki/0014316089557264a6b348958f449949df42a6d3a2e542c000/0014318447438 ...

  5. Spring Boot 使用IntelliJ IDEA创建一个web开发实例(二)

    1. 创建一个Controller类 package com.example.demo; import org.springframework.web.bind.annotation.RequestM ...

  6. GridControl详解(九)表格中的控件

    选择完成控件后,可用+号点开ColumnEdit列,改控件的类型是RepositoryItem类型的,其相应的属性和相应的控件属性是类似的 构建数据如下: DataTable dt = new Dat ...

  7. 福建工程学院寒假作业第三周B题

    第二集 你说,你的女朋友就是你的电脑 TimeLimit:2000ms  MemoryLimit:128000KB 64-bit integer IO format:%lld   Problem De ...

  8. 给vim安装YouCompleteMe

    要安装YouCompleteMe ,vim须支持python.看是否支持,可以在vim中:version 查看, 如果python前有+号,就是支持,减号就是不支持. 如果不支持,需要以编译安装方式重 ...

  9. Python3 反射及常用的方法

    反射就是通过字符串映射或修改程序运行时的状态.属性.方法 有四个常用方法: hasattr(obj,name_str) 判断一个obj对象是否有对应name_str的方法 getattr(obj,na ...

  10. 64_t5

    texlive-mkpattern-svn15878.1.2-33.fc26.2.noarch..> 24-May-2017 15:54 38178 texlive-mkpic-bin-svn3 ...