F. High Cry
time limit per test

1 second

memory limit per test

512 megabytes

input

standard input

output

standard output

Disclaimer: there are lots of untranslateable puns in the Russian version of the statement, so there is one more reason for you to learn Russian :)

Rick and Morty like to go to the ridge High Cry for crying loudly — there is an extraordinary echo. Recently they discovered an interesting acoustic characteristic of this ridge: if Rick and Morty begin crying simultaneously from different mountains, their cry would be heard between these mountains up to the height equal the bitwise OR of mountains they've climbed and all the mountains between them.

Bitwise OR is a binary operation which is determined the following way. Consider representation of numbers x and y in binary numeric system (probably with leading zeroes) x = xk... x1x0 and y = yk... y1y0. Then z = x | y is defined following way: z = zk... z1z0, where zi = 1, if xi = 1 or yi = 1, and zi = 0 otherwise. In the other words, digit of bitwise OR of two numbers equals zero if and only if digits at corresponding positions is both numbers equals zero. For example bitwise OR of numbers 10 = 10102 and 9 = 10012 equals 11 = 10112. In programming languages C/C++/Java/Python this operation is defined as «|», and in Pascal as «or».

Help Rick and Morty calculate the number of ways they can select two mountains in such a way that if they start crying from these mountains their cry will be heard above these mountains and all mountains between them. More formally you should find number of pairs land r (1 ≤ l < r ≤ n) such that bitwise OR of heights of all mountains between l and r (inclusive) is larger than the height of any mountain at this interval.

Input

The first line contains integer n (1 ≤ n ≤ 200 000), the number of mountains in the ridge.

Second line contains n integers ai (0 ≤ ai ≤ 109), the heights of mountains in order they are located in the ridge.

Output

Print the only integer, the number of ways to choose two different mountains.

Examples
input
  1. 5
    3 2 1 6 5
output
  1. 8
input
  1. 4
    3 3 3 3
output
  1. 0
Note

In the first test case all the ways are pairs of mountains with the numbers (numbering from one):

(1, 4), (1, 5), (2, 3), (2, 4), (2, 5), (3, 4), (3, 5), (4, 5)

In the second test case there are no such pairs because for any pair of mountains the height of cry from them is 3, and this height is equal to the height of any mountain.

【题意】给你一个序列,问有多少个区间满足区间所有数的或值大于区间的所有数。

【分析】或值大于区间的所有数,即大于这个区间内的最大值。那我们可以枚举每个数作为最大值来算他的贡献。那么对于每个数,我们就要找到一个极限的区间使得这个数在此区间内是最大值。那么如何知道某个数在这个区间内或值大于他呢?考虑到或的性质,如果这个数 x 第 i 位上为0,而,离他最近的某个数 y 第 i 位上为1,那么区间内包含这个数x就必须包含这个数y,那么对于每一个非1 位,取一个离他最近的,左边右边都是。以上就是两个预处理,第一个预处理求每个数找到左边第一个大于等于它的数的位置的后一位置,和右边第一个大于它的数的前一位置。第二个预处理求满足或条件的最小区间,然后算贡献即可。

  1. #include <bits/stdc++.h>
  2. #define inf 0x3f3f3f3f
  3. #define met(a,b) memset(a,b,sizeof a)
  4. #define pb push_back
  5. #define mp make_pair
  6. #define rep(i,l,r) for(int i=(l);i<=(r);++i)
  7. #define inf 0x3f3f3f3f
  8. using namespace std;
  9. typedef long long ll;
  10. typedef unsigned long long ull;
  11. const int N = 2e5+;;
  12. const int M = ;
  13. const int mod = ;
  14. const int mo=;
  15. const double pi= acos(-1.0);
  16. typedef pair<int,int>pii;
  17. typedef pair<ll,int>P;
  18. int n,m,k;
  19. int a[N],l[N],r[N],L[N],R[N],st[N],pos[];
  20. int main(){
  21. scanf("%d",&n);
  22. for(int i=;i<=n;i++){
  23. scanf("%d",&a[i]);
  24. l[i]=;r[i]=n;
  25. L[i]=;R[i]=n+;
  26. }
  27. for(int i=;i<=n;i++){
  28. while(st[]>&&a[st[st[]]]<a[i])--st[];
  29. if(st[])l[i]=st[st[]]+;
  30. st[++st[]]=i;
  31. }
  32. st[]=;
  33. for(int i=n;i>;i--){
  34. while(st[]>&&a[st[st[]]]<=a[i])--st[];
  35. if(st[])r[i]=st[st[]]-;
  36. st[++st[]]=i;
  37. }
  38. for(int i=;i<=n;i++){
  39. for(int j=;j<=;j++){
  40. if((a[i]&(<<j))==){
  41. L[i]=max(L[i],pos[j]);
  42. }
  43. else {
  44. pos[j]=i;
  45. }
  46. }
  47. }
  48. for(int i=;i<=;i++)pos[i]=n+;
  49. for(int i=n;i>;i--){
  50. for(int j=;j<=;j++){
  51. if((a[i]&(<<j))==){
  52. R[i]=min(R[i],pos[j]);
  53. }
  54. else {
  55. pos[j]=i;
  56. }
  57. }
  58. }
  59. ll ans=;
  60. for(int i=;i<=n;i++){
  61. if(l[i]<=L[i])ans+=1LL*(L[i]-l[i]+)*(r[i]-i+);
  62. if(r[i]>=R[i])ans+=1LL*(r[i]-R[i]+)*(i-l[i]+);
  63. if(l[i]<=L[i]&&r[i]>=R[i])ans-=1LL*(L[i]-l[i]+)*(r[i]-R[i]+);
  64. }
  65. printf("%lld\n",ans);
  66. return ;
  67. }
  68. /*
  69. 5
  70. 3 2 1 6 5
  71. */

Codeforces Round #441 (Div. 2, by Moscow Team Olympiad) F. High Cry(思维 统计)的更多相关文章

  1. Codeforces Round #441 (Div. 2, by Moscow Team Olympiad) D. Sorting the Coins

    http://codeforces.com/contest/876/problem/D 题意: 最开始有一串全部由"O"组成的字符串,现在给出n个数字,指的是每次把位置n上的&qu ...

  2. Codeforces Round #441 (Div. 2, by Moscow Team Olympiad) C. Classroom Watch

    http://codeforces.com/contest/876/problem/C 题意: 现在有一个数n,它是由一个数x加上x每一位的数字得到的,现在给出n,要求找出符合条件的每一个x. 思路: ...

  3. Codeforces Round #441 (Div. 2, by Moscow Team Olympiad) B. Divisiblity of Differences

    http://codeforces.com/contest/876/problem/B 题意: 给出n个数,要求从里面选出k个数使得这k个数中任意两个的差能够被m整除,若不能则输出no. 思路: 差能 ...

  4. Codeforces Round #441 (Div. 2, by Moscow Team Olympiad) A. Trip For Meal

    http://codeforces.com/contest/876/problem/A 题意: 一个人一天要吃n次蜂蜜,他有3个朋友,他第一次总是在一个固定的朋友家吃蜂蜜,如果说没有吃到n次,那么他就 ...

  5. Codeforces Round #441 (Div. 2, by Moscow Team Olympiad)

    A. Trip For Meal 题目链接:http://codeforces.com/contest/876/problem/A 题目意思:现在三个点1,2,3,1-2的路程是a,1-3的路程是b, ...

  6. Codeforces Round #441 (Div. 2, by Moscow Team Olympiad) E. National Property(2-sat)

    E. National Property time limit per test 1 second memory limit per test 512 megabytes input standard ...

  7. ACM-ICPC (10/16) Codeforces Round #441 (Div. 2, by Moscow Team Olympiad)

    A. Trip For Meal Winnie-the-Pooh likes honey very much! That is why he decided to visit his friends. ...

  8. Codeforces Round #516 (Div. 2, by Moscow Team Olympiad) D. Labyrinth

    http://codeforces.com/contest/1064/problem/D 向上/向下加0,向左/右加1, step = 0,1,…… 求的是最少的步数,所以使用bfs. step=k ...

  9. Codeforces Round #516 (Div. 2, by Moscow Team Olympiad) D. Labyrinth(重识搜索)

    https://codeforces.com/contest/1064/problem/D 题意 给你一个有障碍的图,限制你向左向右走的次数,问你可以到达格子的个数 思路 可以定义状态为vi[x][y ...

随机推荐

  1. 发现IE 9的一个独有的小bug,并附解决方案

    在最近的项目中,解决了一些浏览器兼容方面的bug,这篇主要描述在IE 9在渲染值为auto的overflow-x属性时,所产生的专属bug及解决办法. 1.问题描述 在做一个收货地址管理静态页面的时候 ...

  2. 利用Django REST framework快速实现文件上传下载功能

    安装包 pip install Pillow 设置 首先在settings.py中定义MEDIA_ROOT与MEDIA_URL.例如: MEDIA_ROOT = os.path.join(BASE_D ...

  3. Centos7安装FTP突然无法登录

    vi /etc/pam.d/vsftpd //注释掉auth required pam_shells.so session optional pam_keyinit.so force revokeau ...

  4. 【逆向知识】开发WinDBG扩展DLL

    如何开发WinDbg扩展DLL WinDbg扩展DLL是一组导出的回调函数,用于实现用户定义的命令.以便从内存转储中提取特定的信息.扩展dll由调试器引擎加载,可以在执行用户模式或内核模式调试时提供自 ...

  5. rsync本地及远程复制备份【原创】

    1.安装rsyncyum instsall rsync 2.本地复制 rsync -auq --progress --delete /tongbu1/ /tongbu2/ rsync -auq --p ...

  6. 被我误解的max_connect_errors【转】

    实为吾之愚见,望诸君酌之!闻过则喜,与君共勉 第一节  什么是max_connect_errors 一开始接触这个参数的时候,感觉他和max_connections的含义差不多,字面意思简单明了,这个 ...

  7. pom可以过滤resource 下的文件

  8. gc overhead limit exceeded内存问题

    gc overhead limit exceeded 当出现这种问题的时候一般有两种思路 一.修改idea或者eclipse中的配置文件,将内存调到1024即可 二.在代码中通过system.gc 手 ...

  9. python网络编程--RabbitMQ

    一:RabbitMQ介绍 RabbitMQ是AMPQ(高级消息协议队列)的标准实现.也就是说是一种消息队列. 二:RabbitMQ和线程进程queue区别 线程queue:不能跨进程,只能用于多个线程 ...

  10. CF312B 【Archer】

    容易算出这人第一次胜利的概率,第二次的,第三次的…… 好像可以无限乘下去 但是这题精度卡到1e-6 不妨设一个eps,当这次胜率小于eps时,就break掉,反正它已经不影响答案了 我设的是eps=1 ...