Explorar o código

Correct size of bit sets

Olivier Marty %!s(int64=8) %!d(string=hai) anos
pai
achega
38fc6d1d18
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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]));
 }