摘要:
《不想调了》 《再草一遍😡》,似乎是炸int128了,有巨佬感兴趣可以调一调。 真是思慕😡,重构了一遍分数更低了😡。 点击查看代码 #include<bits/stdc++.h> using namespace std; #define int __int128 const int N=1e6 阅读全文
摘要:
上一版运算过程中会炸 inline int absl(int x){return x>0?x:~x+1;} inline int min(int x,int y){return x<y?x:y;} struct rea{ int mu,zi; rea jian(){ int gcd=__gcd(ab 阅读全文
摘要:
《写写吧,不然学弟学妹以为我是来打酱油的😅️》 初赛 $\quad $不会初赛有人上50都费劲吧,没错就是我上50费劲😅️。胡乱做两套题都没有这么低过。 $\quad $ 上午whk,直接水过去了,然后体活,本来想和 zcx 一起去打乒乓球的。但是我们搁西扩哪跑得过老本部正黄旗的啊😅️。 $\ 阅读全文
该文被密码保护。 阅读全文
摘要:
miao~~~ $\quad $ 不知道哪些闲的屁股生疮的人干的,懒得删了,放在这里警示后人吧。 阅读全文
摘要:
原题链接 《小trick》 \[ans=\sum _{i=1}^{n} \sum _{j=1}^{n}lcm(a_i,a_j) \]当然正常莫反不能是这种形式的,可以观察到 \(a_i\) 的值域很小,只有 \(5\times 10^4\) ,所以我们去考虑直接枚举。 $\quad $ 记 \(c_ 阅读全文
摘要:
原题链接 $\quad $ 先考虑如何处理 \(max(a_p + a_q ,b_p + b_q)\) ,当 \(a_p +a_q \ge b_p +b_q\) 时,\(a_p -b_p \ge b_q -a_q\) 。 $\quad $ 那我们记法杖的 \(\delta _{p}=a_p -b_p 阅读全文
摘要:
平衡树系列 splay 点击查看代码 #include<bits/stdc++.h> using namespace std; const int N=2e6+10; int siz[N],cnt[N],tot,fa[N],ch[N][2],val[N],root,n; inline int rea 阅读全文