0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-19 16:45:25 +00:00
OI-codes/Luogu/P3773/P3773.cpp

32 lines
486 B
C++

#include <iostream>
using std::cin;
using std::cout;
const char endl = '\n';
const int N = 233333 + 5;
const int mod = 1e9 + 7;
int n, f[N], ans;
int main() {
std::ios::sync_with_stdio(false);
cin.tie(nullptr);
cin >> n;
for (int i = 1, x; i <= n; i++) {
cin >> x;
for (int j = x - 1 & x; j; j = j - 1 & x) {
f[j] = (f[j] + f[x] + 1) % mod;
}
ans = (ans + f[x]) % mod;
}
cout << ans << endl;
return 0;
}