题号 标题 已通过代码 题解/讨论 通过率 团队的状态
A String 点击查看 进入讨论 566/3539  通过
B Irreducible Polynomial 点击查看 规律 730/2290 未通过
C Governing sand 点击查看 进入讨论 388/2088  通过
D Number 点击查看 进入讨论 959/1469  通过
E Find the median 点击查看 离散化 88/985 OK
F Energy stones 点击查看 BIT 16/132 未通过
G Make Shan Happy 点击查看 进入讨论 3/29 未通过
H Pair 点击查看 数位DP 93/245 OK
I Chessboard 点击查看 进入讨论 17/83 未通过
J A+B problem 点击查看 进入讨论 1024/1844  通过
K Function 点击查看 进入讨论 8/49 未通过

E-Find the median

题意

n次操作,($n \le 400000$),每次给出$L_i, R_i$向集合中插入,让你把$[L_i, L_i+1, L_i+2, ... , R_i]$ 插入到集合中,同时输出集合的中位数。

集合一开始为空,($1 \le L_i, R[i] \le 1e9$)

思路

空间有限,所以不可以把两个端点间的一段单独拿出来当成一个点

动态开点也被卡了空间

具体思路还是离散化,我们可以中间的点和左端点看成一个点

把原来对闭区间的操作改为对左闭右开区间的操作

就是把原来的$[L_i, R_i]$ 更改为 $[L_i, R_i + 1)$

  1. // #pragma GCC optimize(2)
  2. // #pragma GCC optimize(3)
  3. // #pragma GCC optimize(4)
  4. #include <algorithm>
  5. #include <iterator>
  6. #include <iostream>
  7. #include <cstring>
  8. #include <cstdlib>
  9. #include <iomanip>
  10. #include <bitset>
  11. #include <cctype>
  12. #include <cstdio>
  13. #include <string>
  14. #include <vector>
  15. #include <stack>
  16. #include <cmath>
  17. #include <queue>
  18. #include <list>
  19. #include <map>
  20. #include <set>
  21. #include <cassert>
  22. // #include<bits/extc++.h>
  23. // using namespace __gnu_pbds;
  24. using namespace std;
  25. #define pb push_back
  26. #define fi first
  27. #define se second
  28. #define debug(x) cerr<<#x << " := " << x << endl;
  29. #define bug cerr<<"-----------------------"<<endl;
  30. #define FOR(a, b, c) for(int a = b; a <= c; ++ a)
  31.  
  32. typedef long long ll;
  33. typedef long double ld;
  34. typedef pair<int, int> pii;
  35. typedef pair<ll, ll> pll;
  36.  
  37. const int inf = 0x3f3f3f3f;
  38. const ll inff = 0x3f3f3f3f3f3f3f3f;
  39. const int mod = 1e9+;
  40.  
  41. template<typename T>
  42. inline T read(T&x){
  43. x=;int f=;char ch=getchar();
  44. while (ch<''||ch>'') f|=(ch=='-'),ch=getchar();
  45. while (ch>=''&&ch<='') x=x*+ch-'',ch=getchar();
  46. return x=f?-x:x;
  47. }
  48.  
  49. /**********showtime************/
  50. const int big = 1e9;
  51. const int maxn = ;
  52. int X[maxn],Y[maxn];
  53. int L[maxn], R[maxn];
  54. int a1,b1,c1,m1;
  55. int a2,b2,c2,m2;
  56. struct node{
  57. int cnt;
  58. ll sum;
  59. int lazy;
  60. int len;
  61. } tree[maxn * ];
  62. //离散化
  63. vector<int>vec;
  64. int getid(int x) {
  65. return lower_bound(vec.begin(), vec.end(), x) - vec.begin() + ;
  66. }
  67. //
  68.  
  69. void pushdown(int le,int ri,int rt) {
  70. tree[rt<<].cnt += tree[rt].lazy;
  71. tree[rt<<|].cnt += tree[rt].lazy;
  72. tree[rt<<].lazy += tree[rt].lazy;
  73. tree[rt<<|].lazy += tree[rt].lazy;
  74. int mid = (le + ri) >> ;
  75.  
  76. tree[rt<<].sum += 1ll*tree[rt].lazy * (vec[mid] - vec[le-]);
  77. tree[rt<<|].sum += 1ll*tree[rt].lazy *(vec[ri] - vec[mid]);
  78. tree[rt].lazy = ;
  79. }
  80.  
  81. void update(int L, int R, int le, int ri, int rt) {
  82. if(le >= L && ri <= R) {
  83. tree[rt].lazy++;
  84. tree[rt].cnt++;
  85. //因为每个节点表示【le实际值,ri实际值)的长度。
  86. tree[rt].sum += 1ll*(vec[ri] - vec[le - ]);
  87. return;
  88. }
  89. int mid = (le + ri) >> ;
  90. if(tree[rt].lazy) pushdown(le,ri,rt);
  91. if(mid >= L) {
  92. update(L, R, le, mid, rt<<);
  93. }
  94. if(mid < R) {
  95. update(L, R, mid+, ri, rt<<|);
  96. }
  97. tree[rt].sum = tree[rt<<].sum + tree[rt<<|].sum;
  98. }
  99.  
  100. int query(ll tot, int le, int ri, int rt) {
  101. if(le == ri) {
  102.  
  103. int cnt = tree[rt].cnt, res;
  104. int lbound = vec[le-];
  105. if(tot % cnt == ) {
  106. res = lbound + tot / cnt - ;
  107. }
  108. else
  109. res = lbound + tot / cnt;
  110. return res;
  111.  
  112. }
  113.  
  114. int mid = (le + ri) >> ;
  115. if(tree[rt].lazy) pushdown(le,ri,rt);
  116.  
  117. ll lsum = tree[rt<<].sum;
  118. if(lsum >= tot) return query(tot,le, mid, rt<<);
  119. else return query(tot - lsum, mid+, ri, rt<<|);
  120. }
  121. int main(){
  122.  
  123. int n;
  124. scanf("%d", &n);
  125. scanf("%d%d%d%d%d%d", &X[], &X[], &a1, &b1, &c1, &m1);
  126. scanf("%d%d%d%d%d%d", &Y[], &Y[], &a2, &b2, &c2, &m2);
  127.  
  128. L[] = min(X[], Y[]) + ;
  129. R[] = max(X[], Y[]) + ;
  130. L[] = min(X[], Y[]) + ;
  131. R[] = max(X[], Y[]) + ;
  132. //因为我后面操作的是左闭右开区间,所以这里右端点++。
  133. R[] ++; R[] ++;
  134. vec.pb(L[]);vec.pb(R[] );
  135. vec.pb(L[]);vec.pb(R[]);
  136. for(int i=; i<=n; i++) {
  137. X[i] = (1ll*a1 * X[i-] + 1ll*b1 * X[i-] + c1 )% m1;
  138. Y[i] = (1ll*a2 * Y[i-] + 1ll*b2 * Y[i-] + c2 )% m2;
  139. L[i] = min(X[i], Y[i]) + ;
  140. R[i] = max(X[i], Y[i]) + ;
  141. R[i] ++;
  142. vec.pb(L[i]); vec.pb(R[i]);
  143. }
  144. sort(vec.begin(), vec.end());
  145. vec.erase(unique(vec.begin(), vec.end()), vec.end());
  146. for(int i=; i<=n; i++) {
  147. L[i] = getid(L[i]);
  148. R[i] = getid(R[i]);
  149. }
  150.  
  151. int tot = vec.size();
  152.  
  153. ll all = ;
  154.  
  155. for(int i=; i<=n; i++) {
  156.  
  157. update(L[i], R[i] - , , tot, );
  158.  
  159. all += 1ll*(vec[R[i]-] - vec[L[i] - ]);
  160.  
  161. printf("%d\n", query((all + )/, , tot, ));
  162. }
  163. return ;
  164. }

H Pair

题意

给定A,B,C($A \le 1e9, B \le 1e9, C \le 1e9$),求满足

$$ (x \& y) > C $$

$$ (x \oplus y)  < C$$

的<x, y>对数。其中

$ 1 \le x \le A, 1 \le y \le B$

思路

数位DP,自己code了好久

  1. /*
  2. * @Author: chenkexing
  3. * @Date: 2019-08-09 23:58:00
  4. * @Last Modified by: chenkexing
  5. * @Last Modified time: 2019-08-10 22:19:16
  6. * @Link https://ac.nowcoder.com/acm/contest/887/H
  7. */
  8. // #pragma GCC optimize(2)
  9. // #pragma GCC optimize(3)
  10. // #pragma GCC optimize(4)
  11. #include <algorithm>
  12. #include <iterator>
  13. #include <iostream>
  14. #include <cstring>
  15. #include <cstdlib>
  16. #include <iomanip>
  17. #include <bitset>
  18. #include <cctype>
  19. #include <cstdio>
  20. #include <string>
  21. #include <vector>
  22. #include <stack>
  23. #include <cmath>
  24. #include <queue>
  25. #include <list>
  26. #include <map>
  27. #include <set>
  28. #include <cassert>
  29. // #include<bits/extc++.h>
  30. // using namespace __gnu_pbds;
  31. using namespace std;
  32. #define pb push_back
  33. #define fi first
  34. #define se second
  35. #define debug(x) cerr<<#x << " := " << x << endl;
  36. #define bug cerr<<"-----------------------"<<endl;
  37. #define FOR(a, b, c) for(int a = b; a <= c; ++ a)
  38.  
  39. typedef long long ll;
  40. typedef long double ld;
  41. typedef pair<int, int> pii;
  42. typedef pair<ll, ll> pll;
  43.  
  44. const int inf = 0x3f3f3f3f;
  45. const ll inff = 0x3f3f3f3f3f3f3f3f;
  46. const int mod = 1e9+;
  47.  
  48. template<typename T>
  49. inline T read(T&x){
  50. x=;int f=;char ch=getchar();
  51. while (ch<''||ch>'') f|=(ch=='-'),ch=getchar();
  52. while (ch>=''&&ch<='') x=x*+ch-'',ch=getchar();
  53. return x=f?-x:x;
  54. }
  55.  
  56. /**********showtime************/
  57. ll dp[][][][][][][];
  58. //dp[len][limit1][limit2][ok1][ok2]
  59. //由于两个数要大于0,所以多加上ok1,ok2.
  60. //f1 &的, f2 ^的 // == 2 表示不行了
  61. int shuA[],shuB[],shuC[];
  62. ll dfs(int len, int limit1, int limit2, int ok1, int ok2, int f1, int f2){
  63. if(f1 == && f2 == ) return ;
  64. if(dp[len][limit1][limit2][ok1][ok2][f1][f2] != -)
  65. return dp[len][limit1][limit2][ok1][ok2][f1][f2];
  66. if(len == ) {
  67. return ok1 && ok2 && (f1 == || f2 == );
  68. }
  69.  
  70. int up1 = , up2 = ;
  71. if(limit1) up1 = shuA[len];
  72. if(limit2) up2 = shuB[len];
  73. ll res = ;
  74. // cout<<len<<" " << up1<<" , " << up2<<endl;
  75. for(int i=; i<=up1; i++) {
  76. for(int j=; j<=up2; j++) {
  77.  
  78. // if(len == 2)cout<<len << " " << i << " , " << j << " = " << f1 <<" , , " <<f2 << endl;
  79.  
  80. if(f1 == || f2 == )
  81. res += dfs(len-, limit1 && i == up1, limit2 && j == up2, ok1 || i, ok2 || j, f1, f2);
  82. else {
  83. int F1 = f1, F2 = f2;
  84. if((i & j) < shuC[len]) F1 = ;
  85. else if((i & j) > shuC[len]) F1 = max(F1, );
  86.  
  87. if((i ^ j) > shuC[len]) F2 = ;
  88. else if((i ^ j) < shuC[len]) F2 = max(F2, );
  89. res += dfs(len-, limit1 && i == up1, limit2 && j == up2, ok1 || i, ok2 || j, F1, F2);
  90. }
  91. }
  92.  
  93. }
  94. dp[len][limit1][limit2][ok1][ok2][f1][f2] = res;
  95. return res;
  96. }
  97.  
  98. int main(){
  99. int T; scanf("%d", &T);
  100. while(T--) {
  101. int a, b, c;
  102. scanf("%d%d%d", &a, &b, &c);
  103. memset(dp, -, sizeof(dp));
  104. int len = ;
  105. for(int i=; i<=len; i++) shuA[i] = a % , a = a >> ;
  106. for(int i=; i<=len; i++) shuB[i] = b % , b = b >> ;
  107. for(int i=; i<=len; i++) shuC[i] = c % , c = c >> ;
  108. printf("%lld\n", dfs(len, , , , , , ));
  109. }
  110. return ;
  111. }

2019nc#7的更多相关文章

  1. 2019nc#2

    A Eddy Walker 题意 你有n个点(0-n-1),按顺序形成一个环,初始时你在0的位子,你随机顺时针走一步或者逆时针走一步, 一旦你走到一个点后,环上所有点都被经过至少一次后,你就必须停下来 ...

  2. 2019nc#10

    题号 标题 已通过代码 题解/讨论 通过率 团队的状态 A Blackjack 点击查看 背包DP 32/109 补好了 B Coffee Chicken 点击查看 进入讨论 738/2992  通过 ...

  3. 2019nc#9

    题号 标题 已通过代码 题解/讨论 通过率 团队的状态 A The power of Fibonacci 点击查看 进入讨论 69/227 未通过 B Quadratic equation 点击查看 ...

  4. 2019NC#8

    题号 标题 已通过代码 题解/讨论 通过率 团队的状态 A All-one Matrices 点击查看 单调栈+前缀和 326/2017  通过 B Beauty Values 点击查看 进入讨论 8 ...

  5. 2019nc#6

    https://ac.nowcoder.com/acm/contest/886#question 题号 标题 已通过代码 题解/讨论 通过率 团队的状态 A Garbage Classificatio ...

  6. 2019nc#5

    题号 标题 已通过代码 题解/讨论 通过率 团队的状态 A digits 2 点击查看 1017/2384  通过 B generator 1 点击查看 567/3692  通过 C generato ...

  7. 2019nc#4

    题号 标题 已通过代码 题解 通过率 团队的状态 A meeting 点击查看 树直径 604/2055   B xor 点击查看 线段树维护线性基交 81/861 未通过 C sequence 点击 ...

  8. 2019nc#3

    题号 标题 已通过代码 题解/讨论 通过率 团队的状态 A Graph Games 点击查看 进入讨论 18/292 未通过 B Crazy Binary String 点击查看 1107/3615 ...

  9. 2019NC#1

    LINK B Integration 题意: 给定$a_1,a_2,...,a_n$, 计算 $$\frac{1}{π}\int_{0}^{\infty}\frac{1}{\prod\limits_{ ...

随机推荐

  1. spark 源码分析之二十一 -- Task的执行流程

    引言 在上两篇文章 spark 源码分析之十九 -- DAG的生成和Stage的划分 和 spark 源码分析之二十 -- Stage的提交 中剖析了Spark的DAG的生成,Stage的划分以及St ...

  2. python3键盘输入

    1.脚本 # -*- coding: utf-8 -*- print("今年是哪一年?"),year = input("年份:")print ("ji ...

  3. pycharm与monkeyrunner测试

      操作命令: 导包: import sysfrom com.android.monkeyrunner import MonkeyRunner,MonkeyDevice  device=MonkeyR ...

  4. C#中属性的解析

    一.域的概念 C#中域是指成员变量和方法,在OOP编程中(面向对象编程)我们要求用户只知道类是干什么的,而不许知道如何完成的,或者说不允许访问类的内部,对于有必要在类外可见的域,我们用属性来表达,所以 ...

  5. luogu1220_关路灯 区间dp

    传送门 区间dp f[i][j][state] : [i, j]区间 state=0 当前选i state = 1 当前选j 注意枚举的顺序 转移的设计时 在同时刻不在[i,j]区间里的数也要考虑 不 ...

  6. 原生js实现图片懒加载+加入节流

    这两天在学习图片的懒加载实现,看了很多大佬的博客,终于有了点成果.现在用了其中一位大佬的文章中的代码实现了图片懒加载并且在其基础上加入了节流函数. 原理就不多讲了,有需要的可以去大佬的文章看看.大佬文 ...

  7. 第二十二章 跳出循环-shift参数左移-函数的使用 随堂笔记

    第二十二章 跳出循环-shift参数左移-函数的使用 本节所讲内容: 22.1 跳出循环 22.2 Shift参数左移指令 22.3 函数的使用 22.4 实战-自动备份mysql数据库和nginx服 ...

  8. 伪分布式Spark + Hive on Spark搭建

    Spark大数据平台有使用一段时间了,但大部分都是用于实验而搭建起来用的,搭建过Spark完全分布式,也搭建过用于测试的伪分布式.现在是写一遍随笔,记录一下曾经搭建过的环境,免得以后自己忘记了.也给和 ...

  9. java并发编程(八)----(JUC)CountDownLatch

    CountDownLatch 是一个非常实用的多线程控制工具类." Count Down " 在英文中意为倒计数, Latch 为门问的意思.如果翻译成为倒计数门阀, 我想大家都会 ...

  10. 【Kubernetes 系列二】从虚拟机讲到 Kubernetes 架构

    目录 什么是虚拟机? 什么是容器? Docker Kubernetes 架构 Kubernetes 对象 基础设施抽象 在认识 Kubernetes 之前,我们需了解下容器,在了解容器之前,我们得先知 ...