abc quot img_abc rsync

ABC_DQ:基于MATLAB/Simulink的三相静止坐标系到两相静止坐标系(Clark变换)到两相旋转坐标系变换(Park变

ABC_DQ:基于MATLAB/Simulink的三相静止坐标系到两相静止坐标系(Clark变换)到两相旋转坐标系变换(Park变换)的仿真模型。仿真条件:MATLAB/Simulink R2015bID:2720651503371560 ......
坐标系 坐标 Simulink ABC_DQ MATLAB

(转)Docker格式化输出命令:"docker inspect --format" 学习笔记

原文:https://www.cnblogs.com/kevingrace/p/6424476.html Docker --format 参数提供了基于 Go模板 的日志格式化输出辅助功能,并提供了一些内置的增强函数。 什么是模板?上图是大家熟悉的 MVC 框架(Model View Control ......
quot 命令 inspect 格式 笔记

Atcoder ABC308H Make Q

考虑枚举唯一一个度数为 $3$ 的点 $u$,即既在环上又与非环上一点相连的那个点。 接下来考虑先处理环,那可以先把 $u$ 从图上删掉,环的最短距离便是与 $u$ 有连边的 $2$ 个点在图上最短路长度加上 $2$ 个点与 $u$ 连边的长度,即 $\min\{w_{u, i} + w_{u, j ......
Atcoder 308H Make ABC 308

重塑一个ID:"歪老哥",从新开始博文生涯

我,路人甲,风靡FPGA行业多年,曾长时间霸榜多个博客论坛,获得过十佳博主称号; 随后,由于工作、生活等其他原因,近8年没有在写过博客,几乎断档,销声匿迹。 因此00后,甚至90后很少有认识我的; 虽然我的书一直在高校做教材,新书也深受业内人士的亲睐; 我开源的代码,文档,博客也一直在被扩散,奄奄一 ......
老哥 quot 生涯

python3使用pip安装wordcloud报错error: Microsoft Visual C++ 14.0 or greater is required. Get it with "Microsoft C++ Build Tools": https://visualstudio.microsoft.com/visual-cpp-build-tools/

背景: 使用的是Anaconda集成环境,python版本是:3.10,安装wordcloud包,使用的命令是:pip install wordcloud,出现报错:error: Microsoft Visual C++ 14.0 or greater is required. Get it wit ......

AT-abc214-g题解

title: AT_abc214_g题解 date: 2023-05-30 21:12:20 tags: 题解 cover: https://i.imgloc.com/2023/05/30/Vt18Rz.jpeg # 题目描述 给定两个排列 $p, q$,要求统计满足 $\forall i, r_i ......
题解 AT-abc 214 abc AT

abc073d <Floyed + 枚举排列>

[D - joisino's travel](https://atcoder.jp/contests/abc073/tasks/abc073_d) ``` // https://atcoder.jp/contests/abc073/tasks/abc073_d // Floyed + 枚举排列 #i ......
Floyed 073d abc 073 lt

abc072d <贪心>

[D - Derangement](https://atcoder.jp/contests/abc072/tasks/arc082_b) ``` // https://atcoder.jp/contests/abc072/tasks/arc082_b // // 令0表示p[i]!=i, 1表示p[ ......
072d abc 072 lt gt

abc071d <递推>

[D - Coloring Dominoes](https://atcoder.jp/contests/abc071/tasks/arc081_b) ``` // https://atcoder.jp/contests/abc071/tasks/arc081_b // #include #inclu ......
071d abc 071 lt gt

abc070d <简单树上dfs>

[D - Transit Tree Path](https://atcoder.jp/contests/abc070/tasks/abc070_d) ``` // https://atcoder.jp/contests/abc070/tasks/abc070_d // #include #inclu ......
070d abc 070 dfs lt

abc069d <构造>

[D - Grid Coloring](https://atcoder.jp/contests/abc069/tasks/arc080_b) ``` // https://atcoder.jp/contests/abc069/tasks/arc080_b // #include #include # ......
069d abc 069 lt gt

abc068d <思维 + 构造>

[D - Decrease (Contestant ver.)](https://atcoder.jp/contests/abc068/tasks/arc079_b) 逆向构造(操作)思维 ~ ``` // https://atcoder.jp/contests/abc068/tasks/arc07 ......
思维 068d abc 068 lt

【计数,DP】ABC306Ex Balance Scale

[Problem Link](https://atcoder.jp/contests/abc306/tasks/abc306_h) 现在有 $n$ 个球,每个球有一个重量,重量未知。接下来会进行 $m$ 次称重,每次给定 $a_i$ 和 $b_i$,比较这两个球的重量,结果可能是 $>,=, 点击查 ......
Balance Scale ABC 306 Ex

abc067d <博弈 + dfs>

[D - Fennec VS. Snuke](https://atcoder.jp/contests/abc067/tasks/arc078_b) ``` // https://atcoder.jp/contests/abc067/tasks/arc078_b // // 关键点: 双方的最优策略一 ......
067d abc 067 dfs lt

abc066d <组合>

[D - 11](https://atcoder.jp/contests/abc066/tasks/arc077_b) ``` // https://atcoder.jp/contests/abc066/tasks/arc077_b // // 总组合数减去重复部分 // 对于本题求组合数方法: / ......
066d abc 066 lt gt

记录一下mybatis-plus报"Invalid bound statement (not found): com,gykg.yizhichun,mapper,HospitalSetMapper,insert"问题

最近在学习使用用的mybatis-plus生成器生成的controller,entity,mapper,service,serviceImp,然后运行mapper.insert插入操作,报"Invalid bound statement (not found): com,gykg.yizhichun ......

abc065d <贪心+最小生成树> [lambda表达式]

[D - Built?](https://atcoder.jp/contests/abc065/tasks/arc076_b) ``` // https://atcoder.jp/contests/abc065/tasks/arc076_b // 贪心+最小生成树 // 关键在于意识到, 连接x或y ......
表达式 lambda 065d abc 065

abc309e <dfs>

[E - Family and Insurance](https://atcoder.jp/contests/abc309/tasks/abc309_e) ``` // https://atcoder.jp/contests/abc309/tasks/abc309_e // // 关键在于意识到, ......
309e abc 309 dfs lt

abc309f <线段树 + 离散化 + 双指针>

[F - Box in Box](https://atcoder.jp/contests/abc309/tasks/abc309_f) ``` // https://atcoder.jp/contests/abc309/tasks/abc309_f // [unique + lower_bound ......
线段 指针 309f abc 309

谷粒商城报错:虚拟机安装elasticsearch时出现 "Caused by: java.lang.IllegalArgumentException: unknown setting [“http.host

如果你的报错也是http.host这里的那么大概率是在前面 echo "http.host: 0.0.0.0" >> /mydata/elasticsearch/config/elasticsearch.yml 这个http.host:的后面有一个空格然后才加上0.0.0.0,当然也有可能是因为你的 ......

ABC276F

设 $b_x$ 表示第 $x$ 次操作的期望权值,由题意可得: $$b_x=x^{-2}\times \sum\limits_{1 \leq i,j \leq x}\max(a_i,a_j)$$ 前面的部分可通过求逆元直接获得。设后面那部分为 $c_x$,递推计算 $c_x$ 的值,只需要计算新增添 ......
276F ABC 276

ABC276E

由于路径除起点外不能重复经过一点且需要回到起点,那么出发时和结束时一定会经过与起点 $\text{S}$ 相邻的不同的点。如果存在两个这样的点联通,那么就存在这样一条从起点出发返回起点的回路。 但题目中有对路径长大于等于 $4$ 的限制,可以发现走一个 $2\times2$ 的矩阵回到原点是满足条件 ......
276E ABC 276

[ABC200F] Minflip Summation

## 题意简述: 给定一个字符串 $S$ ($ 1\ \le\ |S|\ \le\ 10^5 $), $S$ 仅包含 $0$ , $1$ , $?$。将该字符串复制 $K$ ($ 1\ \le\ |K|\ \le\ 10^9 $) 遍,得到字符串 $S'$,$S'$ 中的 $?$ 可随意替换成 $0 ......
Summation Minflip 200F ABC 200

ABC309

## T1:[Nine](https://atcoder.jp/contests/abc309/tasks/abc309_a) 当 $A+1 = B$ 且 $A \% 3 = 1$ 时,说明 $A$ 和 $B$ 相邻 代码实现 ``` a, b = map(int, input().split()) ......
ABC 309

transmission提示"No space left on device"错误

通过 `df -h`发现根目录空间已满 通过 `du -h -x --max-depth=1`找到`/var/cache/apt/archives`和`/lib/modules`两个目录占用较大。 ## `/var/cache/apt/archives`的清理: `sudo apt-get clea ......
quot transmission 错误 device space

创建LVM报错:Can't initialize physical volume "/dev/sdb1" of volume group "myvg" without -ff

问题: 在使用fdisk /dev/sdb 删除原有LVM分区,在接着创建LVM新分区/dev/sdb1。完毕保存之后。 执行pvcreate /dev/sdb1出现报错 Can't initialize physical volume "/dev/sdb1" of volume group "my ......
quot volume initialize physical without

abc064d <贪心/前缀和>

[D - Insertion](https://atcoder.jp/contests/abc064/tasks/abc064_d) > [另一种做法](https://www.bilibili.com/read/cv24447317),注意这两种写法: >1. `max_element` >2. ......
前缀 064d abc 064 lt

abc063d <二分答案>

[D - Widespread](https://atcoder.jp/contests/abc063/tasks/arc075_b) 对二分答案的特点要敏感!!! ``` // https://atcoder.jp/contests/abc063/tasks/arc075_b // 二分答案 #i ......
答案 063d abc 063 lt

abc062d <优先队列>

[D - 3N Numbers](https://atcoder.jp/contests/abc062/tasks/arc074_b) [参考](https://blog.csdn.net/awow80285/article/details/101550652) ``` // https://atc ......
队列 062d abc 062 lt

AtCoder Grand Contest 058 D Yet Another ABC String

[洛谷传送门](https://www.luogu.com.cn/problem/AT_agc058_d "洛谷传送门") [AtCoder 传送门](https://atcoder.jp/contests/agc058/tasks/agc058_d "AtCoder 传送门") Orz H6_6Q ......
AtCoder Another Contest String Grand