小莫同学xy
小莫同学xy
全部文章
分类
归档
标签
去牛客网
登录
/
注册
小莫同学xy的博客
全部文章
(共2篇)
题解 | 线段重合
#include <iostream> using namespace std; const int N=1e5+10; int b[N]; int n; void insert(int l, int r, int x) { b[l]+=x; b[r]-=x; //...
2025-03-10
0
62
题解 | 计算数组的小和
#include <iostream> #include <cstdio> using namespace std; const int N=1e5+10; int a[N], tmp[N]; long merge(int l, int mid, int r) { ...
2025-03-04
0
50