题目大意: 有两个字符串, 现在要你选择一个区间[ l , r ], 要求这个区间内部两个串不相同的位置小于等于p%, 求这个区间最长是多长. 设dp[ i ]表示以i为结尾的满足条件的最长串长度是多少. 然后我们观察一下转移条件, 我们可以发现, 需要满足的条件是(sum[ i ]-sum[ j ...
分类:
其他好文 时间:
2017-10-20 18:40:18
阅读次数:
125
一、Region 概念 Region是表获取和分布的基本元素,由每个列族的一个Store组成。对象层级图如下: Table (HBase table) Region (Regions for the table) Store (Store per ColumnFamily for each Regi... ...
分类:
其他好文 时间:
2017-10-17 12:21:45
阅读次数:
136
参考:http://blog.csdn.net/dhtx_wzgl/article/details/47614867 配置了hbas路径的方法(任何路径下均可执行) 启动集群中所有的regionserver hbase-daemons.sh start regionserver启动某个regions ...
分类:
其他好文 时间:
2017-09-29 11:04:02
阅读次数:
122
Given a 2D board containing 'X' and 'O', capture all regions surrounded by 'X'. A region is captured by flipping all 'O''s into 'X''s in that surround ...
分类:
其他好文 时间:
2017-09-27 10:21:16
阅读次数:
215
throwing away too much information http://deeplearning.net/tutorial/lenet.html http://ufldl.stanford.edu/tutorial/supervised/Pooling/ ...
分类:
其他好文 时间:
2017-09-19 15:12:02
阅读次数:
187
In mathematics, the four color theorem, or the four color map theorem, states that, given any separation of a plane into contiguous regions, producing ...
分类:
其他好文 时间:
2017-08-02 11:09:46
阅读次数:
224
area_center_gray ( Regions, Image : : : Area, Row, Column ) 计算Image图像中Region区域的面积Area和重心(Row,Column)。 cooc_feature_image ( Regions, Image : : LdGray, ...
分类:
其他好文 时间:
2017-07-27 23:37:18
阅读次数:
522
1、add_channels ( Regions, Image : GrayRegions : : ) 将Image图像的灰度值赋给区域Regions,得到GrayRegions。 2、change_domain ( Image, NewDomain : ImageNew : : ) 改变Image ...
分类:
其他好文 时间:
2017-07-27 23:30:08
阅读次数:
281
矩阵的bfs, 套路一致,从外向内, 很easy 构造类, 遍历矩阵建立图 bfs要点在于如何建图, 是否建类, 建比较器, 建方向容器, 建走过的路的存储器(数组, 或者set, list) 如何遍历(堆不空?), 遍历到内部的点时判断是否符合题意(边界, 走过), 再考虑题意, 判断当前的点是否 ...
分类:
其他好文 时间:
2017-07-23 22:55:37
阅读次数:
174
130. Surrounded Regions 题目链接:https://leetcode.com/problems/surrounded-regions/#/description 题目大意:给定一个二维的板,板上是'X'或'O'字符,捕获所有被'X'包围的区域,在该区域内的字符'O'翻转为'X' ...
分类:
其他好文 时间:
2017-06-24 19:52:34
阅读次数:
155