摘要: 一.Mido初步使用:使用mido库说来简单,但是特别的麻烦。它有许许多多的功能,这里仅介绍几种最常用的。以一个代码为例:import mido from mido import Message, MidiFile, MidiTrack #不这样写会错 mid = MidiFile() #给自己的文 阅读全文
posted @ 2022-04-22 20:50 ZeroHzzzz 阅读(172) 评论(0) 推荐(0)
摘要: 这个东西随便看看,有点印象就好了。不定期不定量更新1vaccine疫苗2manufacturer生产商3preserve保护4judgement判断力5initial最初的,开始的6statement陈述7heaven天堂8reliable可依靠的9enthusiastic满腔热忱的10patch眼 阅读全文
posted @ 2022-01-25 23:09 ZeroHzzzz 阅读(19) 评论(0) 推荐(0)
摘要: #include<cstdio> #include<queue> #include<cstring> using namespace std; const int maxn=1000010; const int INF=2e9; int head[maxn],nxt[maxn],to[maxn],v 阅读全文
posted @ 2022-01-22 06:52 ZeroHzzzz 阅读(8) 评论(0) 推荐(0)
摘要: #include<cstdio> #include<queue> using namespace std; queue<int>q; const int INF=1e9; const int maxn=6010; int head[maxn],nxt[maxn],to[maxn],val[maxn] 阅读全文
posted @ 2021-11-10 21:49 ZeroHzzzz 阅读(6) 评论(0) 推荐(0)
摘要: #include<cstdio> using namespace std; long long a[1000010]; int n,k; struct node { long long w,num; }q[1000010]; void search_min() { int end=0,head=1; 阅读全文
posted @ 2021-11-07 22:05 ZeroHzzzz 阅读(7) 评论(0) 推荐(0)
摘要: #include<cstdio> using namespace std; const int maxn=200010; int head[maxn],nxt[maxn],to[maxn],tt; int low[maxn],dfn[maxn],index; int n,m; bool cut[ma 阅读全文
posted @ 2021-11-07 22:03 ZeroHzzzz 阅读(6) 评论(0) 推荐(0)
摘要: #include<cstdio> #include<queue> using namespace std; queue<int>q; int head[1000010],nxt[1000010],w[1000010],to[1000010],tot; int dis[500010],vis[5000 阅读全文
posted @ 2021-11-07 22:00 ZeroHzzzz 阅读(9) 评论(0) 推荐(0)
摘要: #include<cstdio> #include<stack> #include<map> using namespace std; const int maxn=50010; stack<int>q; int head[maxn],nxt[maxn],to[maxn],tt; int dfn[m 阅读全文
posted @ 2021-11-07 19:35 ZeroHzzzz 阅读(7) 评论(0) 推荐(0)
摘要: 汕头市的金山中学是一个可爱的学校,那里有迷人的风景,可敬的老师,还有那三年的美好时光...(这是听学姐学长们说的,我只是一个小小的在校生.....)因此,金山中学的203机房便诞生了很多像我一样每天无所事事然后还喜欢搞事情的孩子们。他们利用c++的Beep,开启了金中机房的音乐时代。史称“钢琴1.0 阅读全文
posted @ 2021-06-30 13:45 ZeroHzzzz 阅读(27) 评论(0) 推荐(0)
摘要: 在这里,我们需要认识下time这个库。这是Python自带的库,无需自己下载安装。time,顾名思义,就是和时间有关的库。这里我们用到的是time里面的localtime模块首先试下:import time n=time.localtime() print(n)结果是:time.struct_tim 阅读全文
posted @ 2021-06-30 13:08 ZeroHzzzz 阅读(37) 评论(0) 推荐(0)