题目:https://www.lydsy.com/JudgeOnline/problem.php?id=4137 关于可持久化01trie树:https://www.cnblogs.com/LadyLex/p/7281110.html 看了看它的两道例题,就没写。 特殊商品可以直接用可持久化trie ...
分类:
其他好文 时间:
2019-02-14 20:46:33
阅读次数:
213
show()、hide()、toggle() 参数:null或(duration,easing,callblack) fadeIn()、fadeout()、fadeToggle()、fadeTo() 参数:null或(duration,[opacity],easing,callblack) slid ...
分类:
Web程序 时间:
2019-02-14 20:46:19
阅读次数:
259
卸载linux自带JDK 查看Linux中自带JDK程序 [root@CentOS7 ~]# rpm -qa|grep java 卸载自带JDK程序 [root@CentOS7 ~]# rpm -e --nodeps java-1.6.0-openjdk-1.6.0.41-1.13.13.1.el6... ...
分类:
其他好文 时间:
2019-02-14 20:46:02
阅读次数:
291
我满心以为本题正解为最短路,结果到处都是最大流…… 几乎所有的都写了什么“对偶图”跑最短路~~,但我真的不知道什么叫做对偶图~~ 介绍一下本题的最短路算法叭。并不算难。主要是感性理解。 首先很容易观察出这是一个最小割,那么就是求最大流了。 但是这题的点数高达10e6,按常理来说最大流应该稳稳地TLE ...
分类:
其他好文 时间:
2019-02-14 20:45:48
阅读次数:
217
"嘟嘟嘟" 对于这种找规律的题,我向来是不会的。 通过大佬们的各种打表找规律、神奇dp等方法,我们得到了答案就是$\lfloor \frac{2 ^ {n + 1}}{3} \rfloor$。 高精是显然的,但是还得用fft,毕竟这是省选题。 刚开始我一运行就RE,都不让你输入,后来才发现是数组开到 ...
分类:
其他好文 时间:
2019-02-14 20:45:30
阅读次数:
184
可视区尺寸document.documentElement.clientWidthdocument.documentElement.clientHeight 滚动距离(body和documentElement是为了游览器的数据兼容)document.body.scrollTop/scrollLeft ...
分类:
其他好文 时间:
2019-02-14 20:45:13
阅读次数:
268
#include #include #include #include #define FORa(i,s,e) for(int i=s;i=e;i--) #define File(name) freopen(name".in","r",stdin),freopen(name".out","w",st... ...
分类:
其他好文 时间:
2019-02-14 20:44:58
阅读次数:
311
1.下载storm安装文件并解压 [root@hadoop01 soft]# wget http://mirrors.hust.edu.cn/apache/storm/apache-storm-1.1.3/apache-storm-1.1.3.tar.gz [root@hadoop01 soft]#... ...
分类:
其他好文 时间:
2019-02-14 20:44:20
阅读次数:
198
audio 在浏览器中自动播放 //使用autoplay属性 var src = "./award.wav"; var body = document.getElementsByTagName("body")[0]; if (body.getElementsByTagName("audio").le ...
分类:
其他好文 时间:
2019-02-14 20:43:53
阅读次数:
389
前期工作: 第一步:下载epel源 wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repo 第二步:安装 yum install -y ansible ansible 命令格式 Usage: ansi ...
分类:
其他好文 时间:
2019-02-14 20:43:25
阅读次数:
192
配置环境为centos6.8 下载tomcat程序到服务器,并解压启动服务测试 [root@hadoop01 ~]# wget http://apache.claz.org/tomcat/tomcat-8/v8.5.37/bin/apache-tomcat-8.5.37.tar.gz [root@h... ...
分类:
其他好文 时间:
2019-02-14 20:43:06
阅读次数:
192
通过搜索原因,发现有可能是在对文件读取是编译出现了问题,并且Keyword中提示b'Iris-setosa',而我们的string转float函数中没有字母b,很奇怪。所以尝试将转换函数所有的string前加b。结果发现数据读取正常。下边附上转换函数: ...
分类:
编程语言 时间:
2019-02-14 20:42:47
阅读次数:
233
1.【安装python】 官网下载最新python版本即可,我用的是3.7.1 https://www.python.org/downloads/release/python-371/ 下载安装红线框中所示,可执行安装程序 下载完成后,傻瓜式一键安装。 注: 请选中 Add python to pa ...
分类:
其他好文 时间:
2019-02-14 20:42:34
阅读次数:
178
在编写测试程序的过程中,有如下定义: #define UART1_EN (1<<31) 编译后编译器报错: integer operation result is out of range (61-D),经查资料是由于溢出所致,宏定义默认常量是有符号型,当左移31位时,常数就变成负数,编译器就会给出 ...
分类:
其他好文 时间:
2019-02-14 20:42:18
阅读次数:
165
# install dependencies npm install # serve with hot reload at localhost:8080 npm run dev # build for production with minification npm run build # buil ...
分类:
Web程序 时间:
2019-02-14 20:41:48
阅读次数:
200
nginx.conf配置文件,基本就分为以下几块: main events { .... } http { .... upstream myproject { ..... } server { .... location { .... } } server { .... location { ... ...
分类:
其他好文 时间:
2019-02-14 20:41:32
阅读次数:
178