small issue about board

About me

初三 OIer,非常菜。 Luogu Codeforces rating 0 AtCoder rating 0 ......
About me

About this page

本博客主题样式来自:https://www.cnblogs.com/RioTian/ 字体修改来自:https://www.cnblogs.com/RioTian/p/17018687 ......
About this page

CF1511G Chips on a Board

不难发现这是个 Nim 游戏,于是对每对 \((L_i, R_i)\) 所求转化为: \[\bigoplus_{i = 1}^n (a_i - L_i)[a_i \ge L_i] \]暴力做时间复杂度就是 \(\mathcal O(n^2)\),考虑优化。 感觉好像可以倍增?设 \(f(i, k)\ ......
1511G Board Chips 1511 CF

An unexpected error has occurred while opening the workflow. See the event log on the AOS and contact your system administrator to resolve the issue.

\Forms\WorkflowEditorHost\Methods\build private void build() .... System.Exception interopException; ............ else { try { workflowConfiguration = ......

New About Me

你好。 这个博客又双叒叕被重新启用了,这次的原因是同学们陆续转投 cnblogs,不重新启用的话我将会变成时代的眼泪。 关于我的用户名,现在用的三个分别是:Kowenxrz、KxwenOrz、Opuntia9622。 这三个用户名的意思分别是:我的英文名 + 我的姓名首字母缩写、第一个用户名其中两个 ......
About New Me

About Me

OIer,坐标SC。 我还是个游戏黑洞,除了小恐龙就没有玩得好的游戏。 OI也学得非常拉,是个混子。 洛谷:zjc2008 CF:2jczoo8 ......
About Me

BSP(Board Support Package),板级支持包

BSP(Board Support Package),板级支持包,也称为硬件抽象层HAL或者中间层 一,转载: 关于驱动程序与BSP的区别_嵌入式Linux系统开发的博客-CSDN博客_bsp驱动 BSP即Board Support Package,板级支持包。它来源于嵌入式操作系统与硬件无关的设计 ......
板级 Support Package Board BSP

pnpm : 无法加载文件 路径因为在此系统上禁止运行脚本 。有关详细信息,请参阅 https:/go.microsoft.com/fwl ink/?LinkID=135170 中的 about_Execution_Policies。 所在位置 行:1 字符: 1

在vscode命令行输入npm i -D @types/wechat-miniprogram @uni-helper/uni-app- 报如下错误: pnpm : 无法加载文件 C:\Users\Administrator\AppData ** ** \Roaming\npm\pnpm.ps1,因为 ......

GPT-2(small)架构推理解析

1、有字符串BBCAD 2、为字符串中的每个字母添加index索引以进行排序,A、B、C、D的索引下标分别是0、1、2、3,因此排序的数字结果为01123 3、将01123中的每个数字转换为c个元素的向量(这个过程称为embedding,其中c是一个超参数) 4、将每个字母的索引信息分别嵌入到tok ......
架构 small GPT

P5513 [CEOI2013] Board 题解

P5513 容易发现,每次等价于对一个二进制数进行操作。但是这个二进制数长为 \(n\),即需要高精。但是这样支持加一和减一是复杂度会退化为 \(\mathcal{O}(n^2)\),有一个很正常的做法就压位,仿照 bitset 的做法进行操作,复杂度 \(\mathcal{O}(\frac{n ^ ......
题解 P5513 Board 5513 2013

About this book (Entity Framework in Action,Second edtion)

Entity Framework in Action,第二版,是关于快速、正确地编写 EF Core 数据库代码,并最终实现优异的性能。为了帮助解决“简单、正确、快速”方面,我提供了许多示例以及大量的提示和技巧。在此过程中,我介绍了 EF Core 的内部工作原理,因为当事情没有按照你认为的方式工作 ......
Framework Entity Action Second edtion

Thoughts and ideas about how to apply LLMs in specific domains like clinic/law/finance

Applying LLMs in Specific Domains As a university student who has just completed fine-tuning TinyLLaMA-1b with clinical instruction data using the QLo ......
Thoughts specific domains finance clinic

CF1909F1 Small Permutation Problem (Easy Version)

给定一个长度为 \(n\) 的数组 \(a\),其中 \(a_i \in [1, n]\),试计算满足以下条件的 \([1, n]\) 的排列 \(p\) 的个数: \(\forall i \in [1, n], \sum_{1 \le j \le i} [p_j \le i] = a_i\) \( ......
Permutation Problem Version 1909F Small

CF1909F2 Small Permutation Problem (Hard Version)

给定一个长度为 \(n\) 的数组 \(a\),其中 \(a_i \in [-1, n]\),试计算满足以下条件的 \([1, n]\) 的排列 \(p\) 的个数: \(\forall i \in [1, n], \text{有 }\sum_{1 \le j \le i} [p_j \le i] ......
Permutation Problem Version 1909F Small

CodeForces 1909F2 Small Permutation Problem (Hard Version)

洛谷传送门 CF 传送门 感觉这个题还是挺不错的。 考虑 F1。考察 \(a_i\) 差分后的意义,发现 \(a_i - a_{i - 1}\) 就是 \((\sum\limits_{j = 1}^{i - 1} [p_j = i]) + p_i \le i\)。 考虑将其转化为棋盘问题。在 \(( ......

P5513 [CEOI2013] Board 题解

赛时(模拟赛)乱加优化写挂了,爬来写题解。 发现点的深度和路径长度都非常大,而且一个点有多种方式到达,考虑先用统一的方式存储两个点的位置,再进行求解。 存储 为了更好地表示当前的位置,考虑对每个点编号。首先想到类似线段树的编号方法:初始点编号为 \(1\),设当前点编号为 \(x\),则左儿子编号为 ......
题解 P5513 Board 5513 2013

配置内核的时候提示Your display is too small to run Menuconfig! It must be at least 19 lines by 80 columns.

按照按照 (https://rocketboards.org/foswiki/Documentation/EmbeddedLinuxBeginnerSGuide)制作了一个image当想打开内核kernel的配置界面make ARCH=arm menuconfig的时候提示: scripts/kco ......
内核 Menuconfig display columns 时候

P5513 [CEOI2013] Board

NOIP 模拟赛原题,赛时没切。 我们可以先考虑 \(30\) 分的部分分怎么打,\(n \le 50\)。对于每一个点去维护两个信息 \(pos\) 和 \(depth\) 分别表示当前这个点所在位置的编号是多少以及它在第几层,我们从两个点最后的状态往回考虑。然后用一个贪心的思想,深度大的点一定会 ......
P5513 Board 5513 2013 CEOI

CF1900D Small GCD 题解

原题链接:CF1900D,题意不多赘述。 首先可以将 \(a\) 数组排序,并且枚举中间的那个数 \(a_i\)。那么答案就是 \(\sum_{j=1}^{i-1} \gcd(a_j,a_i)\times (n-i)\)。重点在于求前面的 \(\gcd\)。可以用欧拉反演,但是也可以不用,因为我不会 ......
题解 1900D Small 1900 GCD

UIU-Net: U-Net in U-Net for Infrared Small Object Detection:Unet中的Unet

UIU-Net: U-Net in U-Net for Infrared Small Object Detection * Authors: [[Xin Wu]], [[Danfeng Hong]], [[Jocelyn Chanussot]] DOI: 10.1109/TIP.2022.32284 ......
Net U-Net Unet Detection Infrared

A Guide to Image and Video based Small Object Detection using Deep Learning : Case Study of Maritime Surveillance

A Guide to Image and Video based Small Object Detection using Deep Learning : Case Study of Maritime Surveillance 基于图像和视频的小对象指南使用深度学习进行检测:的案例研究海上监视 1 ......

C-Kermit 连接 Microchip WBZ451 Curiosity Board实例

The Kermit Project | Now hosted by Panix.com New York City USA • kermit@kermitproject.org …since 1981 ~/.kermrc 文件: ; Connect to WBZ451 USB-USART Virt ......
Curiosity Microchip 实例 C-Kermit Kermit

CF1900D Small GCD

Link 这是一个需要欧拉反演的题目 首先,可以知道只和数字之间的大小有关,数列的顺序无关,那么就可以首先排一个序方便解决该问题。 根据欧拉函数的性质,知道\(n=\sum_{d|n}\phi{(n)}\) 那么我们每次先确定中间的数\(a_j\),然后根据公式,得他它得贡献是\(\sum_{i=1 ......
1900D Small 1900 GCD CF

ICEE-MCU-Bluetooth+Zigbee-PIC32CX-BZ2 and WBZ451 Curiosity Development Board

Zigbee+Bluetooth: PIC32CX-BZ2 and WBZ451 Curiosity Development Board: https://www.microchip.com/en-us/development-tool/EV96B94A https://github.com/Mic ......

20.Explain how the following reasoning fails to address the complexity of the issue involved, and rebut it. “Sanya is warm all year round and has beautiful beaches,

Round 1: Identifying the Failure in Reasoning Speaker 1 (Student A): Hello, everyone! Let's kick off our discussion by examining the reasoning: "Sanya ......
the complexity following and beautiful

ARC169 B Subsegments with Small Sums 题解

Link ARC169 B Subsegments with Small Sums Question \(x\) 是一个序列,定义 \(f(x)\) 为把序列 \(x\) 切成几段,每段的和不能超过 \(S\) 的最小段数 给出序列 \(A=(A_1,A_2,\cdots,A_N)\) 求: \[\ ......
题解 Subsegments Small with Sums

记录issue:iptables (legacy): Couldn't load match `comment':No such file or directory\n\nTry `

用nerdctl起容器碰到如下issue: FATA[0001] failed to create shim task: OCI runtime create failed: runc create failed: unable to start container process: error d ......
directory iptables comment Couldn legacy

About Me

基本信息 四川初三 Oier。弱死了。 性别:男。 生日:2009-12-24。 体重:?(在减了,在减了O.o) 身高:180? 洛谷。 不挂 CF,AT。没脸挂。QwQ。 成分 CSP-J/S 2023? 依托答辩。 爱看《推子》,《鬼灭》,《小埋》... 爱玩 Mc,王者。 想玩 Ori,正在 ......
About Me

[ABC254E] Small d and k 题解

题目传送门 一道暴力题。 度数和 \(k\) 那么小?直接暴力 \(n\) 遍 bfs,注意 bfs 的队列只能 push 距离不超过 \(3\) 的点。但有个问题,每次 bfs 都需要清空一次距离数组,这样子的时间复杂度是 \(O(n^2)\) 的。但也不难想到,距离数组中被赋值的地方不会很多,记 ......
题解 Small 254E ABC 254
共168篇  :1/6页 首页上一页1下一页尾页