摘要:
Add and Mex 模拟 照着模拟就行了,主要是复杂度分析 第 $i$ 个数字的增长速度为 $i$,显然对最终答案造成影响的范围值域就在 $[0, n]$ 在最不理想的情况下,计算量为 $\sum_{i=1}^{n}\lceil \frac{n + 1}{i} \rceil$ 不难看出就是一个调 阅读全文
摘要:
Root M Leaper $bfs$ 模拟 先把能走的矩阵预处理出来,然后直接跑 $bfs$ 要注意各种边界 #include <iostream> #include <cstdio> #include <array> #include <queue> using namespace std; # 阅读全文