已标记为作弊_歪比八卜
已标记为作弊_歪比八卜
全部文章
分类
寒假营2025第一场(5)
题解(19)
归档
标签
去牛客网
登录
/
注册
已标记为作弊_歪比八卜的博客
Rating+++++
TA的专栏
12篇文章
0人订阅
牛客语法入门班
10篇文章
0人学习
回文对称数#题解
题解#鹏
牛客周赛#题解
1篇文章
0人学习
牛客周赛125#题解#小苯的01合并
2025寒假营第一场
1篇文章
0人学习
题解 | #K-Constructive#
全部文章
(共83篇)
题解 | 【模板】扩展巴什博弈
#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
62
题解 | 【模板】巴什博弈
#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
64
题解 | 【模板】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
72
题解 | 小红的三带一
#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
52
题解 | 小红的不动点分配
#include <bits/stdc++.h>//我们知道一个数字只能分配到一个数组里面,由于两组内部的顺序均可任意重排,所以我们只要关心这个数字的出现次数,如果大于等于二我就能产生2个不动点,如果等于1只能产生一个 using namespace std; int main() { ...
2026-01-07
0
58
题解 | 明日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
57
题解 | 小红的01串
#include <bits/stdc++.h> using namespace std; using ll = long long; ll t; void solve() { string s; while(t--){ cin>>s; ...
2026-01-04
0
67
题解 | 构造数列
#include <bits/stdc++.h> using namespace std; using ll = long long; ll t; void solve() { ll n; while(t--){ cin>>n; ...
2026-01-04
0
59
题解 | #[NOIP2004]FBI树#
```#include <bits/stdc++.h> using namespace std; int n; string s; char fbi(int l,int r) { if(l==r) { if(s[l]=='0') { ...
C++
2026-01-02
0
56
题解 | #[NOIP2001]求先序排列#
#include <bits/stdc++.h> using namespace std; string s1, s2; // s1是中序,s2是后序 void solve(int l1, int r1, int l2, int r2) { if (l1 > r1) return...
C++
二叉树
2026-01-02
0
72
首页
上一页
1
2
3
4
5
6
7
8
9
下一页
末页