Browse Source

Correct size of bit sets

Olivier Marty 8 năm trước cách đây
mục cha
commit
38fc6d1d18
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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]));
 }