06 2023 档案
摘要:个人背景 在参加第十四届蓝桥杯前,系统学过基础算法和简单数据结构、能熟练使用C++编写程序、参加过CCPC河北省赛、力扣通过题数1300+。 省赛和国赛的准备阶段 在https://www.dotcpp.com/、https://dasai.lanqiao.cn/、https://www.luogu
阅读全文
摘要:先安装依赖 https://github.com/jgm/pandoc/releases/download/2.11.0.2/pandoc-2.11.0.2-windows-x86_64.msi 再配置环境变量 我们安装的这个依赖Pandoc,它的安装过程中没有选择安装位置这一项,一般是C:\Pro
阅读全文
摘要:T1 思路:很经典的动态规划问题,枚举每一个房间,根据每一个房间选与不选来写状态计算式子 #include <bits/stdc++.h> using namespace std; const int N = 110; int n; int a[N], f[N]; int main() { cin
阅读全文
摘要:第一题 答案:5484660609 #include <bits/stdc++.h> using namespace std; int main() { string s; for(int i = 1; i <= 2023; i ++) s += to_string(i); vector<int>
阅读全文
摘要:实验要求 运行环境 SQL Server 2022SQL Server Management Studio Management Studio 19 本实验的全部SQL脚本 -- 第一题 create function func1(@coursename char(30)) -- 定义函数 retu
阅读全文
摘要:项目架构图 (重要内容由下划线标出) 整个网站(高并发和高可用原则) 深入研究某一方面: 数据库读写分离、Nginx、RedisSpring、Tomcat、SpringSecurity等源码或者一级缓存、二级缓存 文字总结 说明:一百万用户每天的DAU是用一百万位bit存储的,一年所需的空间就是(3
阅读全文