Browse Source

Correct size of bit sets

Olivier Marty 8 years ago
parent
commit
38fc6d1d18
1 changed files with 1 additions and 1 deletions
  1. 1 1
      code/BitSet.cpp

+ 1 - 1
code/BitSet.cpp

@@ -2,7 +2,7 @@
 typedef long long T;
 const int MAXN = 5000;
 const int BITS = (sizeof(T)*8);
-const int SIZE = ((MAXN+BITS)/BITS); // size of arrays
+const int SIZE = ((MAXN+BITS-1)/BITS); // size of arrays
 void clear(T a[]) {
   memset(a, 0, sizeof(T[SIZE]));
 }