[Lecture Note] Innovation and Entrepreneurship Perspectives and Pathways
[Lecture Note] Innovation and Entrepreneurship Perspectives and Pathways Listen in the Place Summer Camp HKUST(GZ) Entrepreneurship Support Young Successful Entrepreneur in China ByteDance TikTok Deepseek Unitree Insta360 AgiBot Common : start their fist entrepreneurship while they were stud...
CF 2000 题目选做
CF 2000 题目选做 2249C 法1 点边容斥 很好的一题。 点边容斥:考虑一个链或一个树的一部分,其连通块个数 = 点数 - 边数 所以我们只需要动态维护当前的每个前缀的点数 - 边数即可。 破环成链,然后我们直接滑动窗口,用线段树维护点数和边数的变化。 法2 纯分类讨论 我们把这个数列连成一个环,我们假设从顺时针方向走。首先,全局有两个特殊点,分别是1号和n号点,它们会把整个数轴区分为两部分,我们现在考虑 n→1n\to 1n→1 这条路径上的点有多少能作为开头。 我们考虑 nnn 后面第一段连续变化的区间: 显然有 x+kx+kx+k 到 x+1x+1x+1 是否可行等...
[Informal Lecture Note] RobotMaster 8.16 Note
[Informal Lecture Note] RobotMaster 8.16 Note 战队介绍 2023 兵种组介绍 七个兵种 淘汰兵种: 苍穹之锤:远程吊射和近战速发 动力引擎:获取全对经济 空中之王:无人机,只受雷达的干扰 传统兵种: 钢铁先锋:步兵机器人,发射小弹,造成比较快速的伤害。会有自动击打(计算机视觉相关) 未来战士:哨兵。场上自主运动的机器人。自动驾驶和导航技术基础 雷霆之击:飞镖,远程打击 全视之眼:雷达。非常高,可以看到全局,相当于外挂。 战术外挂 全新兵种: 超级装甲 蜂群智能:小型无人机,共4台在场上 技术组 机械组 整个战队的基石 正在...
CF2196E:SA的应用
CF2196E:SA的应用 首先贪心的思路是显然的,因此我们相当于在t串中不断求最长可错配lcp 法1:根号分治 我们考虑以 BBB 分块 Case1:对于 d≤Bd\le Bd≤B 的情况。(即一次最多走 ddd 步) 我们可以先预处理 sss 中所有小于等于 BBB 的子串,并枚举它的哪个位置是空的。接下来把这个串挖掉这个空直接丢入hash中(相当于我们枚举的这一位直接赋值为0),这样的复杂度是 O(nB2)O(nB^2)O(nB2) 的。 然后我们现在处理 ttt 串。我们可以枚举每一个被替换的位置 iii ,那么显然 iii 只有 BBB 种可能。然后我们再去枚举 ddd。...
[Informal Lecture Note] Transdisciplinary Education in the Red Bird MPhil Program
Transdisciplinary Education in the Red Bird MPhil Program Don’t set boundaries Goal: Achieve : Function Hub Promte : Information Hub Flux Cross-Disciplinary Clusters RBM Program Red Bird MPhil Base : 4 hubs, 6 skills development Core: Future Leaders in Innovation and Entrepreneurship AI...
[Lecture Note] From Predictive to Prescriptive : Autonomous Maintenance Operation through Failure Twins
[Lecture Note] From Predictive to Prescriptive : Autonomous Maintenance Operation through Failure Twins [Background] Evolution of maintenance Indstry 5.0 : human-centirc, resilient, sustainable (What has happened?) Scheduled maintenance : Historic data, assessment (risk and benefits) (What is h...
[Lecture Note] 核小体动力学性质及相互作用研究
[Lecture Note] 核小体动力学性质及相互作用研究 【背景】核小体和染色质 人类基因组:30亿碱基对,20000基因 DNA总长:2m 细胞核直径:10μ10\mu10μ 而且每个核苷酸有一个单位的负电荷,会相互排斥 而且不能只放进去,要经常取出来 所以:如何将高负电的DNA压缩进细胞核? 如何高效动态读取。 一般使用的是组蛋白(8倍体?),组成核小体 而核小体会相互作用 核小体的排布也非常重要。核小体有动态变化的过程 核小体是染色质的重要调控枢纽 核小体会生出一些无序蛋白,上面有很多化学修饰微点。这些不同的修饰可以抑制或者促进调控蛋白 核小体本身的结构也是动态化的,会影...
NeRF原理 学习笔记
NeRF原理 学习笔记 假设有一个场景在不同视角中拍的图片 现在给定一个全新的视角,能否预测这个视角下的图像 本质: 已知在 x−yx-yx−y 下的散点,是否能在一个给定一个 xxx 得到新的 yyy 常见的方法是,先拟合出 y=f(x)y=f(x)y=f(x) 的函数 显示表征 Explicit 方法 优势 劣势 Mesh 搞渲染 复杂拓扑重建困难,严重依赖预设模板 Voxel 结构化优势 内存与分辨率矛盾、细节粗糙 Point Cloud (雷达、相机)可以直接采集 非结构化噪声、要后处理优化 直观例子: 隐世表征 Implicit 比如截断符号距...
Academic Words of Physics (Compulsory 1)
Academic Words of Physics (Compulsory 1) English 中文 displacement 位移 velocity 速度 acceleration 加速度 uniform motion 匀速运动 variable motion 变速运动 free fall 自由落体 gravitational acceleration 重力加速度 initial velocity 初速度 final velocity 末速度 time interval 时间间隔 reference system 参考系 s...
PyTorch的Dataloader使用学习笔记
PyTorch的Dataloader使用学习笔记 dataset:数据集 dataloader:数据加载器 本质:每次从dataset中取数据 怎么取:用dataloader中的数据来设置 在 <pytorch.org> 中: 一些常见的参数设置: dataset batch_size :等于2,代表每次抓2张 shuffle:相当于洗牌。(true代表两次不一样),默认是false num_workers:加载数据是单进程还是多进程(默认为0) 但在Windows下>0会有错 drop_last:取牌取不尽,扔不扔 例子: 123456i...
![[Lecture Note] Innovation and Entrepreneurship Perspectives and Pathways](https://raw.githubusercontent.com/zhangxixi2008/img/main/test/20260818213614110.png)

![[Informal Lecture Note] RobotMaster 8.16 Note](https://raw.githubusercontent.com/zhangxixi2008/img/main/test/20260818212940236.png)

![[Informal Lecture Note] Transdisciplinary Education in the Red Bird MPhil Program](/(https:/raw.githubusercontent.com/zhangxixi2008/img/main/test/20260812100309820.png)
![[Lecture Note] From Predictive to Prescriptive : Autonomous Maintenance Operation through Failure Twins](https://raw.githubusercontent.com/zhangxixi2008/img/main/test/20260812170341513.png)
![[Lecture Note] 核小体动力学性质及相互作用研究](https://raw.githubusercontent.com/zhangxixi2008/img/main/test/20260811161001978.png)







