Unverified Commit 7ddb9a4f authored by Ycrpro's avatar Ycrpro Committed by GitHub
Browse files

修正代码问题

parent 4dbd65ef
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -105,7 +105,11 @@ $$

```cpp
int t1[MAXN], t2[MAXN], n;
#define lowbit(x) (x)

inline int lowbit(int x) {
  return x & (-x);
}

void add(int k, int v) {
  int v1 = k * v;
  while (k <= n) {