iui2006x
iui2006x
全部文章
分类
归档
标签
去牛客网
登录
/
注册
iui2006x的博客
全部文章
(共2篇)
题解 | 小红的 gcd
由于精度问题,必须要开longlong,其实核心代码很简单 #include <bits/stdc++.h> using namespace std; int main() { string sa; long long a = 0, b; cin >>...
2025-12-02
0
6
题解 | 小红的区间修改(一)
set和bit都有了,那我来份线段树吧 #include <bits/stdc++.h> using namespace std; struct node { int l, r, sum, lazy; }; vector<node> tree(1200050); ...
2025-11-30
0
10