I'm back.I've get an offer from my current job,as a developer. Also, I decide to maintian my hobby to write down what I've learnt during my closing ti ...
分类:
其他好文 时间:
2021-01-14 10:42:08
阅读次数:
0
(以下字符串下标从0开始,并定义$2s=s+s$) 考虑$f(S)$,即令$l=\max_{2i<|S|且S[0,i)=S[|S|-i,|S|)]}i$,则$f(S)=S+S[l,|S|-l)$ 由于次数足够多,先做一次$S=f(S)$不影响答案,因此假设原串为$2S$(这个$S$不同于初始的$S$ ...
分类:
其他好文 时间:
2021-01-13 11:24:36
阅读次数:
0
package mytest; public class TestInteger { public static void main(String args[]) { Integer a =127; Integer b =127; System.out.println(a==b); a=128; b ...
分类:
其他好文 时间:
2021-01-13 11:22:55
阅读次数:
0
Spring整合Mybatis ? 需要的导入的依赖: Mybatis <dependency> <groupId>org.mybatis</groupId> <artifactId>mybatis</artifactId> <version>3.5.2</version> </dependency ...
分类:
编程语言 时间:
2021-01-13 11:08:14
阅读次数:
0
题目链接:https://codeforces.com/contest/1438/problem/E 根据题目性质,答案不会太大 枚举左端点 \(l\), 令 \(k\) 为 \(a_l\) 的最高位,那么可能合法的右端点 \(r\) 一定在区间和小于 \(2^{k + 1}\) 的区间内,暴力寻找 ...
分类:
其他好文 时间:
2021-01-13 10:34:18
阅读次数:
0
自定义负载均衡 IRule接口介绍 com.netflix.loadbalancer.IRule 是自定义负载均衡的算法实现类 源码 /** * Interface that defines a "Rule" for a LoadBalancer. A Rule can be thought of ...
分类:
编程语言 时间:
2021-01-12 11:20:12
阅读次数:
0
本题解与Luogu同步 Solution 考虑,若出现过就$+1$,便是最优答案。 因为右边$+1$并不会影响左边 记得多组数据归零变量! Code #include<cstdio> #include<cstring> #include<iostream> #include<algorithm> u ...
分类:
其他好文 时间:
2021-01-12 10:34:56
阅读次数:
0
vue项目报错: Cannot read property 'init' of undefined 原因: echarts版本过高 解决: 1、查看package.json中的echarts版本: 结果为5.0 2、终端中输入: npm uninstall echarts 卸载echarts 3、终 ...
分类:
其他好文 时间:
2021-01-11 11:03:02
阅读次数:
0
背景:gitee上下载的开源vue项目,本地部署。执行【npm install】时,报错Error: Can't find Python executable "python", you can set the PYTHON env variable。 解决: 网上提供的一个解决办法:管理员身份打开 ...
分类:
编程语言 时间:
2021-01-11 10:40:56
阅读次数:
0
下面的链接下载对应版本的xdebug. https://xdebug.org/download/historical 源码安装:https://xdebug.org/docs/install#linux Installation From Source Obtain You can download ...
分类:
其他好文 时间:
2021-01-11 10:33:04
阅读次数:
0