暴力朴素无优化写法: #include<bits/stdc++.h> using namespace std; const int maxn=1e3+5; int dp[maxn][maxn]; int v[maxn],w[maxn]; int main(){ int n,m;scanf("%d%d ...
分类:
其他好文 时间:
2021-02-04 12:02:33
阅读次数:
0
#1.方法1 通过sed命令,删除对应行,再增加行,增加缩进。 #2.具体操作 ##2.1删除行 nl 要删除的json文件 | sed '2,5d' 或者 sed '2d' 要删除的json 补充说明:nl命令-增加显示文件的行号。 sed命令-2~5d删除指定行 ##2.2增加行 sed '4a ...
分类:
Web程序 时间:
2021-02-02 10:53:10
阅读次数:
0
public ResponseData deliveryScan(WmsInspectTaskVO dto, HttpServletRequest request) { IRequest requestContext = createRequestContext(request); Response ...
分类:
其他好文 时间:
2021-02-02 10:41:32
阅读次数:
0
Q:第一次提交wordcount案例,OK,一切正常。再次提交,出现下述错误。完整错误粘贴如下: 21/01/27 14:55:48 INFO spark.SecurityManager: Changing modify acls groups to: 21/01/27 14:55:48 INFO ...
分类:
编程语言 时间:
2021-01-28 11:56:52
阅读次数:
0
批量将管理端口17001变更成18001,如下脚本: [root@pxc1 ~]# grep -Rl "17001" /weblogic/web11g36|xargs sed -i 's/17001/18001/g' ...
分类:
其他好文 时间:
2021-01-28 11:38:08
阅读次数:
0
原题链接 dp[i]表示信息传递到第i个烽火台时花费的最少代价 dp[i]=min(dp[j])+a[i];i-m<=j<=i-1 单调队列优化 const int maxn=1e6+7; int a[maxn],n,m; int dp[maxn],q[maxn]; int main(){ n=re ...
分类:
其他好文 时间:
2021-01-21 10:59:48
阅读次数:
0
文件權限 什么是文件权限: 我们对当前文件可以干什么 看 写入 删除 执行 root 拥有最高执行权限 一个权限可以控制它 普通文件的默认权限 我们创建 vim touch echo后默认的权限 rw-r--r-- r 4 read 读取文件 cat less more vim sed w 2 wr ...
分类:
系统相关 时间:
2021-01-21 10:55:18
阅读次数:
0
花了挺多时间的一题,学到了很多,很有必要详细记录一下 打开环境,发现是个留言板,想要发贴,需要先登入 zhangwei zhangwei666 很明显的提示,直接猜中 看着留言板,第一感觉是sql注入 ,一直在找注入点,没找到。后知后觉,还没扫源码 扫下源码 Git泄露,Githacker 恢复下, ...
分类:
其他好文 时间:
2021-01-20 12:09:28
阅读次数:
0
1.环境如下 主机名 IP 角色 2.部署前准备 1.环境准备,所有节点分别配置。 关闭防火墙: $ systemctl stop firewalld $ systemctl disable firewalld 关闭 selinux: $ sed -i 's/enforcing/disabled/' ...
分类:
其他好文 时间:
2021-01-20 12:03:09
阅读次数:
0
DynamoDB supports two types of primary keys: Partition key: A simple primary key, composed of one attribute known as the partition key. Attributes in ...
分类:
其他好文 时间:
2021-01-19 12:30:09
阅读次数:
0