想中彩票的托尼又在摸鱼
想中彩票的托尼又在摸鱼
全部文章
分类
归档
标签
去牛客网
登录
/
注册
想中彩票的托尼又在摸鱼的博客
全部文章
(共3篇)
题解 | 圆覆盖
#include <bits/stdc++.h> #include <cmath> using namespace std; const double eps = 1e-6; const int N = 1e5 + 9; double a[N][3], n, S; //...
2026-03-06
1
9
题解 | 被打乱的异或和
#include <bits/stdc++.h> #include <cstring> using namespace std; //数组:a1, a2, a3, a4... an-1, x // 如此设置,a1 = a2^a3^...^an-1^x = a1, 这样数组中...
2026-03-05
0
13
题解 | 【模板】整数域二分
#include <bits/stdc++.h> using namespace std; const int N = 1e6; int a[N]; int n, q; int leftBound(int x); int rightBound(int x); int main() { ...
2026-03-05
1
10