日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

The Brand New Function(CF-224C)

發布時間:2025/3/17 编程问答 20 豆豆
生活随笔 收集整理的這篇文章主要介紹了 The Brand New Function(CF-224C) 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

Problem Description

Polycarpus has a sequence, consisting of n non-negative integers: a1,?a2,?...,?an.

Let's define function f(l,?r) (l,?r are integer, 1?≤?l?≤?r?≤?n) for sequence a as an operation of bitwise OR of all the sequence elements with indexes from l to r. Formally: f(l,?r)?=?al | al?+?1 | ... ?| ar.

Polycarpus took a piece of paper and wrote out the values of function f(l,?r) for all l,?r (l,?r are integer, 1?≤?l?≤?r?≤?n). Now he wants to know, how many distinct values he's got in the end.

Help Polycarpus, count the number of distinct values of function f(l,?r) for the given sequence a.

Expression x | y means applying the operation of bitwise OR to numbers x and y. This operation exists in all modern programming languages, for example, in language C++ and Java it is marked as "|", in Pascal — as "or".

Input

The first line contains integer n (1 ≤ n ≤ 105) — the number of elements of sequence a. The second line contains n space-separated integers a1, a2, ..., an (0 ≤ ai ≤ 106) — the elements of sequence a.

Output

Print a single integer — the number of distinct values of function f(l,?r) for the given sequence a.

Please, do not use the %lld specifier to read or write 64-bit integers in С++. It is preferred to use cin, cout streams or the %I64d specifier.

Examples

Input

3
1 2 0

Output

4

Input

10
1 2 3 4 5 6 1 2 9 10

Output

11

題意:給出 n 個數,定義函數 F(l,r),表示區間 [l,r] 各項的 或 的和,問 F(l,r) 有多少個不同的值

思路:使用 set,兩重循環枚舉,然后由于所有位都為 1 的數與其他數運算是這個數自身,剪枝剪掉即可

Source Program

#include<iostream> #include<cstdio> #include<cstdlib> #include<string> #include<cstring> #include<cmath> #include<ctime> #include<algorithm> #include<utility> #include<stack> #include<queue> #include<vector> #include<set> #include<map> #include<bitset> #define EPS 1e-9 #define PI acos(-1.0) #define INF 0x3f3f3f3f #define LL long long const int MOD = 1E9+9; const int N = 1000000+5; const int dx[] = {-1,1,0,0,-1,-1,1,1}; const int dy[] = {0,0,-1,1,-1,1,-1,1}; using namespace std;int a[N]; set<int> st; int main() {int n;scanf("%d",&n);for(int i=1;i<=n;i++)scanf("%d",&a[i]);for(int i=1;i<=n;i++){int x=a[i];int y=0;st.insert(x);for(int j=i+1;j<=n;j++){x|=a[j];y|=a[j];st.insert(x);if(x==y)//剪枝break;}}printf("%d\n",st.size());return 0; }

?

總結

以上是生活随笔為你收集整理的The Brand New Function(CF-224C)的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。