葱葱葱
葱葱葱
全部文章
分类
归档
标签
去牛客网
登录
/
注册
葱葱葱的博客
全部文章
(共6篇)
题解 | #二叉树#
用BFS思想实现,不用递归 #include <iostream> #include <queue> using namespace std; int main() { int n, m; while (scanf("%d %d", &a...
2024-03-11
0
162
题解 | #Head of a Gang#
另辟蹊径,不使用并查集实现,但效率低下,代码复杂,仅供参考 #include <iostream> #include <map> #include <vector> using namespace std; struct team { int total...
2024-03-05
1
202
题解 | #神奇的口袋#
#include <iostream> #include <vector> using namespace std; int findWays(int index, int currentVolume, const vector<int>& volume...
2024-03-03
0
180
题解 | #找位置#
#include <iostream> using namespace std; /** * 定义的辅助结构体 */ struct map { char name = '\0'; int num = 0; }; /** * 找到map数组中是否有对应关键字,若有...
2024-02-27
0
198
题解 | #整数奇偶排序#
#include <iostream> #include <algorithm> using namespace std; bool Compare(int x, int y) { return x > y; } int main() { int a...
2024-02-25
0
156
题解 | #特殊排序#
#include <iostream> #include <algorithm> using namespace std; int main() { int MaxNumber; int N; cin >> N; if (N &l...
2024-02-25
0
166