Hello, I recently needed to reduce the "weight" of the Boolean array to use a bit chain, for this I used vector<bool> , it worked very slowly, the bitset turned out to be faster, but not as much as I would like.
Actually a question.
- Is there a faster bitset alternative?
- And is it possible to make a two-dimensional bitset?
Thank you in advance.