Description 思路 从样例的图片可以很好的理清思路。 设$dp[i]$为方案数,那么有两种贡献: 用等长的线段覆盖整个区间,共有$g(i)$种情况,其中$g(i)$代表$i$的约数个数。 中间留空,一共有$dp[i-1]+dp[i-2]+...+dp[1]$种情况。 所以转移式是 \(dp ...
分类:
其他好文 时间:
2021-06-02 16:08:48
阅读次数:
0
https://www.luogu.com.cn/problem/P7599 题解 考虑找到 \((B,C)\) 区间内的最高树 \(M\) 和 \([C,D]\) 中的最高树 \(N\) 那么最后一步跳跃一定是从某棵满足 {\(H_M \le H_T \le H_N\)} 且 {\((T,M)\) ...
https://hyperledger-fabric.readthedocs.io/en/latest/readwrite.html Read-Write set semantics This document discusses the details of the current impleme ...
分类:
其他好文 时间:
2021-06-02 15:28:52
阅读次数:
0
题链 分析 结论:由n个点组成的大小分别为$a_1,a_2,\cdots,a_k$的联通块,再加入$k$条边形成一棵树的方案数为$(\prod a_i)\times n^k-2$ 所以不妨考虑一个节的生成函数: \[ G(x)=\sum_{k\in B}\frac{k}{k!}x^k \] 答案为: ...
分类:
其他好文 时间:
2021-06-02 15:25:56
阅读次数:
0
switch结构 switch(整数|字符|枚举|String){ case 内容:{ 内容满足时执行; [break;] } case 内容:{ 内容满足时执行; [break;] } default: { } } do while结构 do{ …… }while(boolean表达式) cont ...
分类:
其他好文 时间:
2021-06-02 15:24:52
阅读次数:
0
kotlin code: fun go(r: Runnable) = r.run() //fun fGo(f: () -> Unit) = go(f) fun main() { val g: () -> Unit = { println("what")} go(g) } equivalent jav ...
分类:
其他好文 时间:
2021-06-02 15:03:35
阅读次数:
0
JS中类型转换有哪几种? 1. 转换成数字 2. 转换成布尔值 3. 转换成字符串 http://47.98.159.95/my_blog/015/type.jpg https://www.jianshu.com/p/7cb41d109b7e https://www.cnblogs.com/xiao ...
分类:
Web程序 时间:
2021-06-02 15:03:22
阅读次数:
0
操作表单 表单本身也是一个DOM树,使用表单的目的就是为了提交信息 获得表单 <form action="post"> <p> <span>用户名:</span> <input type="text" id="username"> </p> <p> <span>性别:</span> <input t ...
分类:
Web程序 时间:
2021-06-02 14:56:51
阅读次数:
0
自动化开发部署和测试 在之前章节中有一个IsValid方法,检查银行账号是是否符合校验码要求,由于这种方法很容易出现代码错误,都会写一个短小的程序来测试验证此方法。 class Program { [STAThread] static void Main(string[] args) { strin ...
分类:
其他好文 时间:
2021-06-02 14:49:27
阅读次数:
0
A good problem that helps understanding sliding window algorithm :3 ...
分类:
其他好文 时间:
2021-06-02 14:14:21
阅读次数:
0