OpenCV更多形态转化:开盘、闭幕、形态梯度、顶帽、黑帽 1 static class MorphologyOperationsExample { 2 // OpenCV更多的形态转化 3 /* 4 开盘: 5 先侵蚀 后扩张 dst = open(src, element) = dilate(e ...
分类:
其他好文 时间:
2020-10-07 21:39:06
阅读次数:
46
数据很小,n = 20,这个应该可以直接搜索吧,我没试,我用的是折半搜索+二分+线段树维护区间最值,折半搜索就是先搜前10个,然后搜后10个,搜前10个的时候把每一个结果用一个pair<花费,权值>保存下来,然后按照花费排序,在第二次搜索的时候对于当前ww , vv需要的是一个前面搜索满足条件v<= ...
分类:
其他好文 时间:
2020-10-07 21:09:45
阅读次数:
28
查询回文子串个数: #include<bits/stdc++.h> using namespace std; typedef long long LL; typedef pair<double,int> pii; const int N = 3e5+5; const int M = 1e6+5; c ...
分类:
其他好文 时间:
2020-10-05 22:16:55
阅读次数:
30
Swagger简介 由于前后端分离,前端或者后端无法做到及时协商,最终导致问题爆发,所以程序猿写代码时都是很暴躁的。 这个时候,就可以用到Swagger了,它号称世界上最流行的API框架,Restful Api文档在线自动生成器。还可以在线测试API接口,不必特意去下载Postman,ApiPost ...
分类:
其他好文 时间:
2020-09-24 21:48:48
阅读次数:
37
int numIdenticalPairs(int* nums, int numsSize){ int hash[101] = {0}; int ret = 0; for(int i = 0; i < numsSize; i++) { hash[nums[i]]++; ret += hash[num ...
分类:
其他好文 时间:
2020-09-18 00:54:43
阅读次数:
30
一、Print方法和注释 print():向控制台打印方法 -- 单行注释 --[[多行注释--]] Tips:通过将 --[[ 修改成 [[ 快速将多行注释取消。 二、标识符命名规则及常用关键字 标识符命名规则: 不能以数字开头 不能是关键字 命名区分大小写 不建议“_大写字母”命名 Lua中常用 ...
分类:
其他好文 时间:
2020-09-17 17:51:16
阅读次数:
29
有点像行政 v.s. 立法,一个 Q 只能负责提案,一个Q只能负责执行 不需要 sample 所有的 (s,a) pair;你可以用非常 efficient 的方式去 estimate 一个 Q-val 出来; --> 这里用个什么隐向量啥的岂不是更好 --> 参数加 noise 的方式很值得深入研 ...
分类:
其他好文 时间:
2020-09-15 20:55:08
阅读次数:
55
A #include <bits/stdc++.h> #define all(n) (n).begin(), (n).end() #define se second #define fi first #define pb push_back #define mp make_pair #define ...
分类:
其他好文 时间:
2020-09-11 16:00:21
阅读次数:
50
anaconda下安装pytorch 1、 安装anaconda 官网一般显示的是最新版本:https://www.anaconda.com/products/individual 如果想要下载以往版本,可以在下面的网页:https://repo.anaconda.com/archive/ 2、 安 ...
分类:
其他好文 时间:
2020-09-09 19:19:40
阅读次数:
55
点击查看代码块 #include <bits/stdc++.h> #define ed end() #define bg begin() #define mkp make_pair #define pb push_back #define vv(T) v(v(T)) #define v(T) vec ...
分类:
其他好文 时间:
2020-08-21 16:38:12
阅读次数:
84