摘要:
下次背景轮换 : \(\texttt{2024/8/31}\) 个人主页 文章精选 初等Markdown与Katex使用指南 图论 DP 平衡树 | [模板] balanced_tree 数论与推论证明 | 其三 基于字符串的高精度容器3.0 Windows Terminal 3.1 vimrc W 阅读全文
摘要:
![](https://img2024.cnblogs.com/blog/3389876/202409/3389876-20240910110309879-315591770.png) 阅读全文
摘要:
在 Windows 下使用 NoiLinux ubuntu-noi-v2.0.iso 下载 ubuntu-noi-v2.0.iso 打开 VMWare,创建新的虚拟机 -> 自定义(高级)-> 下一步 -> 下一步 -> 安装程序光盘映像文件(iso),选择下载的 ubuntu-noi-v2.0.i 阅读全文
摘要:
马上教师节了,咱们不给教练整坨大的吗 阅读全文
摘要:
欢迎投稿 #1 void Build(int rt, int l, int r) { tree[rt].l = l; tree[rt].r = r; if(l == r) { tree[rt].sum = a[l]; return; } int mid = (l + r) >> 1; Build(l 阅读全文
摘要:
A.Raise Both Hands \(\texttt{Diff }11\) #include<bits/stdc++.h> using namespace std; #define endl '\n' #define void inline void // #define ONLINE_JUDG 阅读全文
摘要:
T3 已更新 阅读全文
摘要:
正在实现,不知道对不对,但是先放这,哪个大佬发现问题了和我说下 设 \[f(l)=\sum\cdots\sum[\gcd=1,\text{lcm}=l] \]\[g(l)=\sum\cdots\sum[\gcd=1,\text{lcm}\mid l] \]\[h(l)=\sum\cdots\sum[ 阅读全文
摘要:
整体二分可以理解成普通二分改版,其实并没有改多少,并且一般对 check() 函数的复杂度要求更宽松 先来看一道经典题目:求区间排名 给一个数列,若干组询问 \((l,r,k)\),求 \([l,r]\) 内第 \(k\) 大,询问次数较大 注意到询问次数较大,因此需要整体二分来解决 首先考虑普通二 阅读全文
摘要:
#include<bits/stdc++.h> using namespace std; #define endl '\n' #define void inline void // #define ONLINE_JUDGE #ifndef ONLINE_JUDGE #define test(i) c 阅读全文