这道题的题意不太明确. 应该是两个序列 $a,b$ 不同,当且仅当存在位置 $i$ 使得 $a[i]$ 不等于 $b[i]$. 朴素的 DP 非常好列:$f[i][j]$ 表示选了 $i$ 个数,且值域为 $[1,j]$ 的总价值和. 那么有 $f[i][j]=f[i-1][j-1] \times ...
分类:
其他好文 时间:
2020-07-19 23:07:52
阅读次数:
64
Programmatically Selecting Objects import bpy def mySelector(objName, additive=False): # By default, clear other selections if not additive: bpy.ops.o ...
分类:
其他好文 时间:
2020-07-19 15:54:00
阅读次数:
61
[Qt]自定义QStyle——实现QProgressBar自定义样式 实现效果预览 前言 ? 我们都知道Qt作为一个跨平台的桌面程序开发框架,其对样式的匹配度非常的友好。正因为如此,使用自定义style开发出自己觉得看起来比较舒服的样式对开发应用程序也是比较重要的。 ? 我们都知道Qt支持QSS来实 ...
分类:
其他好文 时间:
2020-07-19 00:59:45
阅读次数:
257
docker ps 查看当前的容器, -a 显示所以的容器,-q只显示容器 id -> docker rm $(docker ps -qa) 删除所有的容器 docker rmi xxxx(镜像id或者名称) 删除镜像 docker entrypoint 必须有没有退出的进程 才能不退出,可以用 - ...
分类:
其他好文 时间:
2020-07-18 21:58:03
阅读次数:
112
目录 一、Nginx是什么 二、Nginx实现反向代理 2.1 正向代理和反向代理 2.2 nginx实现反向代理 2.2.1 proxy_pass配置 2.2.1.1ngx_http_rewrite_module模块 2.2.2 proxy_set_header配置 2.3 nginx实现负载均衡 ...
分类:
其他好文 时间:
2020-07-18 19:51:41
阅读次数:
73
css样式: <style> * { padding: 0; margin: 0; font-family: "微软雅黑"; font-size: 14px;} ul,li { list-style: none; } a { text-decoration: none; color: black; ...
分类:
其他好文 时间:
2020-07-18 11:26:07
阅读次数:
91
先上一点代码。 //Btn 是已知的button Point pt = Btn.PointToScreen(new System.Windows.Point(0, 0)); MessageBox.Show("Button " + pt.X.ToString() + " " + pt.Y.ToStri ...
The k-means algorithm captures the insight that each point in a cluster should be near to the center of that cluster. It works like this: first we cho ...
分类:
其他好文 时间:
2020-07-17 21:58:52
阅读次数:
87
Find Right Interval (M) 题目 Given a set of intervals, for each of the interval i, check if there exists an interval j whose start point is bigger than ...
分类:
其他好文 时间:
2020-07-16 12:10:10
阅读次数:
63
1.问题:docker : Error response from daemon: Conflict. The container name "***" is already in use原因:容器名占用解决办法:(1)给容器换一个名字, 比如说 docker run -it --name=myce ...
分类:
其他好文 时间:
2020-07-15 23:57:58
阅读次数:
96