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