Solution 对于字典序最小 , 从后往前扫即可满足 . 对于查询冲突 , 通过枚举完全平方数解决 . \(K=1\) 时 , 出现冲突时新分一组即可 . \(K=2\) 时 , 通过拓展域并查集来判断 . 我们把一个数拆成两个点 , 分别为黑点和白点 , 对于冲突的点 , 将它们的黑白点两两相 ...
分类:
其他好文 时间:
2021-06-21 20:03:20
阅读次数:
0
Solution 对于兔子们按照颜色为第一关键字 , 位置为第二关键字排序 , 查询个数时直接二分 , 相同颜色的修改不用管 , 不同颜色的修改不会改变统一颜色内的大小顺序 , 直接修改不会影响有序性 . 时间复杂度 \(O(nlogn)\) Code #include<iostream> #inc ...
分类:
其他好文 时间:
2021-06-21 20:02:00
阅读次数:
0
Solution 设$f_i$ 为斐波那契数列第 \(i\) 项 , \(f_0=0,f_1=1\) , 第一只兔子在第一月出生 考虑每次产生新兔子的过程 , 可以发现第 \(i\) 月 \((i\geq3)\) 出生的第 \(j\) 个兔子的编号为 \(f_{i-1}+j\) , 它的父亲的也就是 ...
分类:
其他好文 时间:
2021-06-21 20:00:18
阅读次数:
0
Solution lca+前缀和 快读不要忘写c= 复杂度 \(O(nk)\) Code #include<iostream> #include<cstdio> #include<cstdlib> #define ll long long using namespace std; const int ...
分类:
其他好文 时间:
2021-06-21 19:59:39
阅读次数:
0
题目链接:串联字符串的最大长度 题目描述: 题解: class Solution { public: int maxLen = 0; void backTracking(vector<string>& arr, int index, vector<int>& letters) { int len = ...
分类:
其他好文 时间:
2021-06-19 19:33:37
阅读次数:
0
//遍历part表达式 void twb_xd_std::cycle_part_exp( tag_t part_tag, std::vector<string> &part_exp ) { try { int number_of_exps = 0;//表达式数量 tag_t * exps ; UF_ ...
分类:
其他好文 时间:
2021-06-19 19:03:00
阅读次数:
0
Terminology “promise” is an object or function with a then method whose behavior conforms to this specification. “thenable” is an object or function t ...
分类:
其他好文 时间:
2021-06-18 19:35:32
阅读次数:
0
##AntV 图可视分析解决方案 详细介绍 AntV 图可视分析解决方案 ...
分类:
其他好文 时间:
2021-06-18 18:52:06
阅读次数:
0
一个数组中只有一个数字出现一次,其他数字都出现两次,请找出这个数字 class Solution { public int singleNumber(int[] nums) { int res = 0; for (int num : nums) { res ^= num; } return res; ...
分类:
其他好文 时间:
2021-06-17 16:49:19
阅读次数:
0
error: manifest missing or unreadable -- please run init due to i made a mistake by deleting .git of kernel , i need recover it . so i found solution ...
分类:
其他好文 时间:
2021-06-16 18:11:46
阅读次数:
0