I need to use a bitset of size 400000000. Just like this:
#include<iostream>
#include<bitset>
using namespace std;
int main(){
bitset<400000000> coord;}
But my program crashes because the bitset is too large. So how can I dynamically allocate a bitset? I can't use boost library.