Last active
February 4, 2025 15:50
-
-
Save jxu/08889b10d54754578495f2eb425430c1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <vector> | |
#include <cstdint> | |
#include <iostream> | |
#include <cassert> | |
#include <bit> | |
struct popcnt_array | |
{ | |
uint32_t len; // length of array in 64-bit words | |
std::vector<uint64_t> ind; // 0/1 to track [pmin(y) > pb] | |
std::vector<uint32_t> t; // t[i] = sums array[0:i/64) | |
// for now, l is limited to 32-bit size so the total fits in 32-bit | |
popcnt_array(const uint32_t l) : | |
len(l / 64), // ith index belongs to word w_(i/64), doesn't round up | |
ind(len, ~0), // all 1s | |
t(len) | |
{ | |
for (uint32_t w = 0; w < len; ++w) | |
t[w] = 64*w; | |
} | |
// sum array[0:y) exclusive! | |
uint64_t sum_to(const uint32_t y) const | |
{ | |
uint64_t mask = (1ULL << (y % 64)) - 1; | |
return t[y/64] + std::popcount(ind[y/64] & mask); | |
} | |
// unset index i | |
void unset(const uint32_t y) | |
{ | |
uint64_t mask = (1ULL << (y % 64)); // (y % 64)th bit set | |
ind[y / 64] &= ~mask; | |
// does not update t | |
} | |
// sync t with ind | |
void refresh(void) | |
{ | |
t[0] = 0; | |
for (uint32_t i = 1; i < len; ++i) | |
{ | |
t[i] = std::popcount(ind[i-1]) + t[i-1]; | |
} | |
} | |
}; | |
int main() | |
{ | |
popcnt_array a(1 << 20); | |
for (size_t i = 0; i < 100; ++i) | |
{ | |
assert(a.sum_to(i) == i); | |
} | |
a.unset(20); | |
a.refresh(); | |
for (size_t i = 0; i < 100; ++i) | |
{ | |
std::cout << i << " " << a.sum_to(i) << std::endl; | |
assert(a.sum_to(i) == (i <= 20) ? i : i-1);} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment