Given an integer array with even length, where different numbers in this array represent different kinds of candies. Each number means one candy of th ...
分类:
其他好文 时间:
2017-07-09 13:48:10
阅读次数:
111
边沿检测采用Candy算法,比较经典,opencv自带 Candy算法的原理可以参见这篇博文:http://www.tuicool.com/articles/Y3q2Mf 整个流程是这样的: 示例代码如下: 运行结果: ...
分类:
其他好文 时间:
2017-07-06 00:32:10
阅读次数:
248
传送门:点击打开链接 题意:一个三元组假设满足j=i+1,k=j+1,ai<=aj<=ak,那么就好的。如今告诉你序列。然后Q次询问。每次询问一个区间[l,r],问区间里有多少个三元组满足要求 思路:刚開始看错题目了,原来三元组是连续3个,这作为bc最后一题也太水了把。。。 先一遍预处理。把连续3个 ...
分类:
其他好文 时间:
2017-07-04 14:43:46
阅读次数:
136
There are N children standing in a line. Each child is assigned a rating value. You are giving candies to these children subjected to the following re ...
分类:
其他好文 时间:
2017-07-03 22:31:11
阅读次数:
240
Given an integer array with even length, where different numbers in this array represent different kinds of candies. Each number means one candy of th ...
分类:
其他好文 时间:
2017-06-29 10:01:10
阅读次数:
136
列表的增删改 names=['candy','kevin','ann','lilei','lily'] users=[admin,cc,sc,cr] 查 print(names[1]) 增 names.append('hanmeimei') 给list从末尾添加值 names.insert(0,'w ...
分类:
编程语言 时间:
2017-06-03 21:02:01
阅读次数:
151
tuple也是一个强制类型转换的函数 tp = ('candy','kevin','may','kevin') 内置方法: tp.count('kevin') tp.index('candy') 元祖是一个不可变的list,只有count和index方法 tuple(list) 可以把list进行强 ...
分类:
编程语言 时间:
2017-06-03 21:01:23
阅读次数:
127
img: 待检测的图像。 threshold: 阈值,可先项,默认为10 line_length: 检测的最短线条长度,默认为50 line_gap: 线条间的最大间隙。增大这个值可以合并破碎的线条。默认为10 返回: lines: 线条列表, 格式如((x0, y0), (x1, y0)),标明开 ...
分类:
编程语言 时间:
2017-05-29 00:27:52
阅读次数:
2294
Given an integer array with even length, where different numbers in this array represent different kinds of candies. Each number means one candy of th ...
分类:
其他好文 时间:
2017-05-22 13:35:23
阅读次数:
200
Given an integer array with even length, where different numbers in this array represent different kinds of candies. Each number means one candy of th... ...
分类:
其他好文 时间:
2017-05-13 22:10:03
阅读次数:
173