XwwwwL
XwwwwL
全部文章
分类
归档
标签
去牛客网
登录
/
注册
XwwwwL的博客
全部文章
(共23篇)
题解 | #最短路径问题#
#include <iostream> #include <vector> #include <queue> using namespace std; #define N 1010 struct Edge { int y; int weigh...
2023-03-06
0
300
题解 | #Freckles#
#include <iostream> #include <vector> #include <algorithm> #include <math.h> using namespace std; int father[1010]; int heig...
2023-03-04
0
285
题解 | #继续畅通工程#
#include <iostream> #include <vector> #include <algorithm> using namespace std; #define N 100010 int father[N]; int height[N]; s...
2023-03-04
0
282
题解 | #第一题#
#include <iostream> using namespace std; int father[1000010]; int height[1000010]; bool visit[1000010]; void Init() { for (int i = 0; i &...
2023-03-03
0
305
题解 | #畅通工程#
#include <iostream> using namespace std; #define N 1000 int father[N];//每个元素父亲下标 int height[N]; void Init(int n) { //最开始每一个元素单独构建一个集合 ...
2023-03-02
0
356
题解 | #连通图#
#include <iostream> using namespace std; #define N 1000 int father[N];//每个元素父亲下标 int height[N]; void Init(int n) { //最开始每一个元素单独构建一个集合 ...
2023-03-02
0
296
题解 | #八皇后#
#include <iostream> #include <cstdio> #include <cmath> using namespace std; int num = 0; //开始存 int ans[92][8];//存八皇后的所有串 int pos[...
2023-03-02
0
267
题解 | #神奇的口袋#
//题目要求搜寻所有解,而不是是否可以,所以DFS时,不能找到一个解,就全部退出,而是应该遍历所有、 #include <iostream> using namespace std; int n; int box[25]; bool visit[25]; int curside =...
2023-03-01
1
299
题解 | #玛雅人的密码#
#include<iostream> #include<queue> #include<string> using namespace std; struct mitery{ int index; string s; mitery(in...
2023-03-01
0
281
题解 | #查找第K小数#
#include <iostream> using namespace std; int main() { int n; while (scanf("%d", &n) != EOF) { int arr[1010] = {0}; fo...
2023-02-28
0
257
首页
上一页
1
2
3
下一页
末页