Herman欧y
Herman欧y
全部文章
分类
寒假营2025第一场(5)
题解(18)
归档
标签
去牛客网
登录
/
注册
Herman欧y的博客
Rating+++++
TA的专栏
12篇文章
0人订阅
牛客语法入门班
10篇文章
0人学习
回文对称数#题解
题解#鹏
牛客周赛#题解
1篇文章
0人学习
牛客周赛125#题解#小苯的01合并
2025寒假营第一场
1篇文章
0人学习
题解 | #K-Constructive#
全部文章
(共77篇)
题解 | 【模板】整数域二分
#include <bits/stdc++.h> using ll = long long; using namespace std; ll n,q; const int N = 2e5+5; vector<ll>a(N,0); ll solve1(ll x)//找第一个...
2026-01-07
0
40
题解 | 解方程
#include <bits/stdc++.h>//这是我这个小白写过最ex的二分题 using namespace std; using ld = long double; using ll = long long; ll a, b, c; ld eps = 1e-6; boo...
2026-01-07
0
38
题解 | 【模板】点圆位置关系
#include <bits/stdc++.h> using ll = long long; using namespace std; ll oljl(ll x1, ll y1, ll x2, ll y2) { return (x1 - x2) * (x1 - x2) + (y1...
2026-01-07
0
39
题解 | 【模板】高精度加法
#include <bits/stdc++.h> using ll = long long; using namespace std; int main() { string s1, s2; cin >> s1 >> s2; ll le...
2026-01-07
0
38
题解 | 【模板】扩展巴什博弈
#include <bits/stdc++.h> using ll = long long; using namespace std; int main() { ll t; cin>>t; while(t--) { ll n,...
2026-01-07
0
35
题解 | 【模板】巴什博弈
#include <bits/stdc++.h> using ll = long long; using namespace std; int main() { ll t; cin>>t; while(t--) { ll n,m...
2026-01-07
0
37
题解 | 【模板】Nim游戏
#include <bits/stdc++.h> using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); cout.tie(nullptr); int...
2026-01-07
0
35
题解 | 小红的三带一
#include <bits/stdc++.h> using namespace std; int main() { int n; cin >> n; vector<int> a(n); for (int i = 0; i <...
2026-01-07
0
24
题解 | 小红的不动点分配
#include <bits/stdc++.h>//我们知道一个数字只能分配到一个数组里面,由于两组内部的顺序均可任意重排,所以我们只要关心这个数字的出现次数,如果大于等于二我就能产生2个不动点,如果等于1只能产生一个 using namespace std; int main() { ...
2026-01-07
0
32
题解 | 明日DISCO
#include <bits/stdc++.h> using namespace std; using ll = long long ; int main() { int n; cin >> n; vector<vector<ll>&...
2026-01-07
0
32
首页
上一页
1
2
3
4
5
6
7
8
下一页
末页