//本模板是离散后对权值建树 #include<bits/stdc++.h> #define mid (l+r>>1) using namespace std; const int N=2e5+10; struct TR { int sum,lo,ro; }tr[N<<5]; int tr_cnt; ...
分类:
其他好文 时间:
2021-04-15 12:28:09
阅读次数:
0
Beautiful is better than ugly. Explicit is better than implicit. Simple is better than complex. Complex is better than complicated. Flat is better tha ...
分类:
编程语言 时间:
2021-04-13 12:03:32
阅读次数:
0
//数组去重 function noRepeat(arr){ var i=0; var len=arr.length; var obj={}; var resArr=[]; while(++i<len){ obj[arr[i]]||resArr.push(arr[i]) obj[arr[i]]=tr ...
分类:
编程语言 时间:
2021-04-10 13:32:35
阅读次数:
0
部署nginx #1.先去查看仓库有没有镜像 root@fanwd-virtual-machine:/home# docker search nginx NAME DESCRIPTION STARS OFFICIAL AUTOMATED nginx Official build of Nginx. ...
分类:
其他好文 时间:
2021-04-08 13:07:20
阅读次数:
0
通过修改系统环境变量: vim /etc/profile 添加 export PIPENV_DEFAULT_PYTHON_VERSION=3.7 export PIPENV_PYPI_MIRROR=https://pypi.tuna.tsinghua.edu.cn/simple 立即生效: sour ...
分类:
其他好文 时间:
2021-04-06 15:03:15
阅读次数:
0
一,表格标签table 表格由<table> 标签来定义。每个表格均有若干行(由 <tr> 标签定义),每行被分割为若干单元格(由<td>标签定义)。字母 td 指表格数据(table data),即数据单元格的内容。数据单元格可以包含文本、图片、列表、段落、表单、水平线、表格等等 <!DOCTYP ...
分类:
Web程序 时间:
2021-04-06 14:50:30
阅读次数:
0
win10 anaconda tensorflow gpu openpose done # # To activate this environment, use # # $ conda activate wind_202102 # # To deactivate an active environ ...
HTML(六)表格 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>TableStudy</title> </head> <body> <!--表格 table 行 tr 列 td --> <table bo ...
分类:
Web程序 时间:
2021-04-06 14:03:52
阅读次数:
0
参考文档:将pip源更换到国内镜像 在c盘user目录新建pip文件夹,然后在里面建一个pip.ini文件 文件内容如下: [global] index-url=https://pypi.doubanio.com/simple #index-url=https://pypi.tuna.tsinghu ...
分类:
其他好文 时间:
2021-04-05 12:29:36
阅读次数:
0
export function createRulesByForm(form = {}, rules = [ { required: true, message: '这项是必填的', trigger: 'blur' }, { required: true, message: '这项是必填的', tr ...
分类:
其他好文 时间:
2021-04-01 13:42:50
阅读次数:
0