Fork me on github
该文被密码保护。 阅读全文
posted @ 2021-03-08 10:30 acboyty 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 为了适应不同领域的时间序列数据集的多样性,许多深度学习架构被开发出来。在这篇文章中,我们调研了一般的用于单步和多步预测的encoder-decoder设计,描述了时间信息是如何被组合到每个模型的预测当中的。接下来,我们突出介绍了混合深度学习的最新进展。混合深度学习结合了充分研究的统计模型和神经网络结 阅读全文
posted @ 2021-02-24 12:34 acboyty 阅读(449) 评论(0) 推荐(0) 编辑
摘要: 记录一下自己GPU版PyTorch和MatConvNet(MCN)的安装过程。 安装环境 Windows 10 专业版 处理器:AMD Ryzen 7 3700X 8-Core Processor 3.60GHz GPU:NVIDIA GeForce RTX 2070 SUPER MATLAB R2 阅读全文
posted @ 2020-05-26 09:50 acboyty 阅读(403) 评论(0) 推荐(0) 编辑
摘要: [TOC] 题目大意 要求维护一个栈,提供压栈、弹栈以及求栈内中位数的操作(当栈内元素$n$为偶数时,只是求第$n/2$个元素而非中间两数的平均值)。最多操作100000次,压栈的数字$key$范围是[1,100000]。 题目分析 前两个操作用$stack$就好。 求中位数。暴力做法即使用上优先队 阅读全文
posted @ 2019-12-20 18:44 acboyty 阅读(324) 评论(0) 推荐(0) 编辑
摘要: 判断化学方程式是否配平。 字符串处理。 有点编译原理递归下降法的感觉。 考场源码,比较粗糙。 阅读全文
posted @ 2019-12-20 18:32 acboyty 阅读(2084) 评论(3) 推荐(1) 编辑
摘要: $kruskal$,有兴趣$heap\_prim$。$stl\ pq$实现复杂度相同。 阅读全文
posted @ 2019-12-13 15:57 acboyty 阅读(255) 评论(0) 推荐(0) 编辑
摘要: 求树的直径。 两遍$dfs$就好了。 cpp include include include include include const int maxn = 10000; const int maxm = 10000; using namespace std; int to[(maxn + max 阅读全文
posted @ 2019-09-07 04:36 acboyty 阅读(241) 评论(0) 推荐(0) 编辑
摘要: 模拟题。 良心出题人并没有$y_1 y_2$的样例。注意闰年的处理。 cpp include using namespace std; int dayOfMonth[13] = {0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}; bool isL 阅读全文
posted @ 2019-09-07 04:34 acboyty 阅读(229) 评论(0) 推荐(0) 编辑
摘要: 简单的替换一下字符串。 注意数组开大点。 cpp include const int maxm = 100; const int maxn = 100; using namespace std; char buf[maxm + 10][110]; struct tNode { char var[11 阅读全文
posted @ 2019-09-05 13:19 acboyty 阅读(229) 评论(0) 推荐(0) 编辑
摘要: 有点忧愁。$CSP$也考$Tarjan$缩点的嘛。 原理咱也不明白,咱也不敢学,找到模板就是抄。 cpp include const int maxn = 10000; const int maxm = 100000; using namespace std; int to[maxm + 10]; 阅读全文
posted @ 2019-09-05 13:18 acboyty 阅读(267) 评论(0) 推荐(0) 编辑