上一页 1 ··· 21 22 23 24 25 26 27 28 29 ··· 31 下一页
摘要: #include <iostream> #include <bits/stdc++.h> #define ll long long using namespace std; const int maxn = 105; queue<char> v[maxn]; ///存储每个轨道上的物品 stack< 阅读全文
posted @ 2023-08-16 19:39 徐星凯 阅读(28) 评论(0) 推荐(0)
摘要: #include<iostream> #include<vector> #include<set> using namespace std; int maxlevel = 1; vector<vector<int>> v; set<int> s; void dfs(int node,int leve 阅读全文
posted @ 2023-08-15 19:17 徐星凯 阅读(23) 评论(0) 推荐(0)
摘要: 今天去考科目四一把过,拿到驾驶证了,不过也是等了很长的时间 #include<iostream> #include<string> #include<algorithm> #include<vector> using namespace std; int v[10010],v1[10010]; ve 阅读全文
posted @ 2023-08-14 18:29 徐星凯 阅读(42) 评论(0) 推荐(0)
摘要: 今天看科目四的题目明天去考试 #include<stdio.h> #include<stdlib.h> #include<string.h> #define max 10005 int n, k, q; // n:已知小圈子的个数 k:小圈子里的人数 q:查询次数 int x, y; // x:第一 阅读全文
posted @ 2023-08-13 20:55 徐星凯 阅读(33) 评论(0) 推荐(0)
摘要: #include<stdlib.h> #include<string.h> #include<stdio.h> typedef struct Node{ int data;//存储数据 int pre;//存储前一个节点的地址 int next;//存储下一个节点的地址 }node; int mai 阅读全文
posted @ 2023-08-12 19:39 徐星凯 阅读(27) 评论(0) 推荐(0)
摘要: #include<iostream> #include<vector> #include<cstdio> using namespace std; const int N = 1e5 + 10; vector<int>v[N]; int n ,vis[N]; double z ,r ,sum ,an 阅读全文
posted @ 2023-08-11 20:11 徐星凯 阅读(34) 评论(0) 推荐(0)
摘要: 今天考科目三一边过,拿捏,中间出了点插曲,从早上十点开始驾校说全邢台市都停考,科一科二科三都一样,一直到下午三点才开始考试,但是还是比昨天好多了。 typedef struct ceshi { char name[20]; int dz; }cs; int main() { int n,m; sca 阅读全文
posted @ 2023-08-10 20:38 徐星凯 阅读(47) 评论(0) 推荐(0)
摘要: 今天去进行科目三的强化去了,体会到了练车的恐怖,早上十点到的,现在九点才刚到家,今天没学习。打算赶紧吃饭洗洗睡了,明天早上8点还要去考科目三,估计又是一整天难受。 阅读全文
posted @ 2023-08-09 20:53 徐星凯 阅读(98) 评论(0) 推荐(0)
摘要: #include<cstdio> #include<cstring> #include<string> #include<math.h> #include<iostream> #include<algorithm> #include<iomanip> #include<vector> #includ 阅读全文
posted @ 2023-08-08 19:26 徐星凯 阅读(116) 评论(0) 推荐(0)
摘要: #include <bits/stdc++.h> using namespace std; vector<int> vec[100000];//存关系图 bool vis[100000];//标记五服以内的亲属 char sex[100000];//记录性别 bool flag;//标记情侣是否为近 阅读全文
posted @ 2023-08-07 19:58 徐星凯 阅读(39) 评论(0) 推荐(0)
上一页 1 ··· 21 22 23 24 25 26 27 28 29 ··· 31 下一页