兔兔加大油
兔兔加大油
全部文章
分类
归档
标签
去牛客网
登录
/
注册
兔兔加大油的博客
全部文章
(共16篇)
题解 | 最大连续子序列
#include<iostream> #include<vector> #include<algorithm> using namespace std; int main() { int k; while (cin >> k) { if (k ...
2026-03-23
0
5
题解 | 畅通工程
#include <iostream> #include <vector> #include <cstring> using namespace std; void dfs(int j, vector<vector<int>>& ...
2026-03-20
0
10
题解 | 神奇的口袋
#include <iostream> #include <vector> #include <algorithm> #include <cstring> #include <map> using namespace std; int m...
2026-03-19
0
13
题解 | 走迷宫
#include <iostream> #include <vector> #include <queue> #include <algorithm> #include <cstring> using namespace std; int ...
2026-03-16
0
18
题解 | 二叉搜索树
#include <iostream> #include <string> using namespace std; string s, r; typedef struct tree { int d; struct tree* l, *r; }* T; tre...
2026-03-14
0
14
题解 | 二叉树遍历
#include <iostream> #include <string> using namespace std; string s; typedef struct tree { char d; struct tree* l, * r; }* t; tree...
2026-03-13
0
12
题解 | 全排列
#include <iostream> #include <string> #include <algorithm> using namespace std; int main() { string s; cin >> s; ...
2026-03-12
0
16
题解 | 字母统计
#include <iostream> #include <vector> #include <string> using namespace std; int main() { string s; cin >> s; vect...
2026-03-09
1
15
题解 | 找最小数 哈希表
#include <iostream> #include <map> #include <vector> using namespace std; int main() { int n,a,b,s; cin >> n; multimap&l...
2026-03-09
1
16
题解 | 小白鼠排队
#include <iostream> #include <vector> #include <algorithm> using namespace std; struct Rat { int p; string q; }; int main()...
2026-03-08
0
17
首页
上一页
1
2
下一页
末页