fork download
  1. #include <unordered_map>
  2. #include <bitset>
  3. #include <iostream>
  4.  
  5. int main()
  6. {
  7. const size_t SZ = 8*sizeof(size_t)+1;
  8. std::cout << SZ;
  9. typedef std::bitset<SZ> BS;
  10. std::unordered_map<BS,size_t> m;
  11. m.insert(std::make_pair(BS(),0));
  12. return 0;
  13. }
Success #stdin #stdout 0s 3064KB
stdin
Standard input is empty
stdout
33