08 2023 档案

摘要:今天早上那个校园网还是连不上,和一个室友一起去营业厅后来又给维修人员打电话充值密码才连上网,中午把被子拿出去晒了一下,毕竟放了那么久了。下午和之前的室友们一起在学校里大致的转了一下 阅读全文
posted @ 2023-08-19 22:38 徐星凯 阅读(10) 评论(0) 推荐(0) 编辑
摘要:今天上午收拾东西坐火车来学校,到校时是下午一点半大概,在路上找了一个学长帮我带路。来了之后开始往宿舍里搬东西,办完自己的帮别人搬,一天下来都累坏了,晚上和舍友一起去洗的澡。 阅读全文
posted @ 2023-08-19 22:35 徐星凯 阅读(23) 评论(0) 推荐(0) 编辑
摘要:#include<bits/stdc++.h> using namespace std; const int N = 1e5+10; map <vector <int>, int> st, cnt;//使用map实现对vector的映射(pair不可以,不能产生索引) vector <int> v[ 阅读全文
posted @ 2023-08-17 19:58 徐星凯 阅读(12) 评论(0) 推荐(0) 编辑
摘要:#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 徐星凯 阅读(20) 评论(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 徐星凯 阅读(4) 评论(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 徐星凯 阅读(31) 评论(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 徐星凯 阅读(11) 评论(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 徐星凯 阅读(17) 评论(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 徐星凯 阅读(26) 评论(0) 推荐(0) 编辑
摘要:今天考科目三一边过,拿捏,中间出了点插曲,从早上十点开始驾校说全邢台市都停考,科一科二科三都一样,一直到下午三点才开始考试,但是还是比昨天好多了。 typedef struct ceshi { char name[20]; int dz; }cs; int main() { int n,m; sca 阅读全文
posted @ 2023-08-10 20:38 徐星凯 阅读(31) 评论(0) 推荐(0) 编辑
摘要:今天去进行科目三的强化去了,体会到了练车的恐怖,早上十点到的,现在九点才刚到家,今天没学习。打算赶紧吃饭洗洗睡了,明天早上8点还要去考科目三,估计又是一整天难受。 阅读全文
posted @ 2023-08-09 20:53 徐星凯 阅读(79) 评论(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 徐星凯 阅读(104) 评论(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 徐星凯 阅读(20) 评论(0) 推荐(0) 编辑
摘要:#include<string.h> #include<cstdio> #include<iostream> #include<algorithm> #include<cmath> #include<string> #include<cstring> #include<vector> using n 阅读全文
posted @ 2023-08-06 19:55 徐星凯 阅读(58) 评论(0) 推荐(0) 编辑
摘要:#include<stdio.h> int main() { int N; scanf("%d",&N); int queue[N]; //记录每个轨道的最小序号 int queueNum=0; //轨道数量 int num; for (int i = 0; i < N; i++) { scanf( 阅读全文
posted @ 2023-08-05 21:46 徐星凯 阅读(62) 评论(0) 推荐(0) 编辑
摘要:#include<stdio.h> #include<stdlib.h> typedef struct node{ //自己父母和孩子的编号 int master; int fa; int mu; int kidn; int kids[10]; double sum,area; }node; nod 阅读全文
posted @ 2023-08-05 17:05 徐星凯 阅读(65) 评论(0) 推荐(0) 编辑
摘要:#include<iostream> #include<stdio.h> int main() { int clock[24], n = 0;//储存大本钟的心情指数 for (int i = 0; i < 24; i++) { scanf("%d", &clock[i]);//输入心情指数 } s 阅读全文
posted @ 2023-08-03 20:56 徐星凯 阅读(19) 评论(0) 推荐(0) 编辑
摘要:#include<stdio.h> #include<string.h> int main() { char s[10];//输入数据 scanf("%s", s); int len = strlen(s), num; //将长度为四的生日补全 if (len == 4) { num = (s[0] 阅读全文
posted @ 2023-08-02 21:14 徐星凯 阅读(51) 评论(0) 推荐(0) 编辑
摘要:#include<math.h> #include<stdio.h> #include<stdlib.h> #include<string.h> int main() { int i; //用于循环 int k; //表示平局的间隔次数 int index; //标记平局次数 char name[2 阅读全文
posted @ 2023-08-01 21:18 徐星凯 阅读(67) 评论(0) 推荐(0) 编辑