CF875D.High Cry
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
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 l and 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.
输入格式
The first line contains integer n ( 1<=n<=200000 ), 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.
输出格式
Print the only integer, the number of ways to choose two different mountains.
输入输出样例
输入#1
5 3 2 1 6 5
输出#1
8
输入#2
4 3 3 3 3
输出#2
0
说明/提示
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.