传送门 树状数组板子题。借这道题整理一下树状数组的模板 class NumArray { private: vector<int> tree; vector<int> arr; int n; int lowbit(int x) { return x & -x; } // 求前缀和 // ……
-
-
置顶
-
-
-
-
-
-
一级标题 行内代码 import os def fun(): return “python” class Solution { public: int minDays(vector<int>& bloomDay, int m, int k) { const int n = bloomDay.size……
来自分类:做题 -
-