Thermal de Broglie wavelength Thermal de Broglie wavelength Thermal de Broglie wavelength In physics, the Thermal de Broglie wavelength is defined for ...
分类:
其他好文 时间:
2018-04-11 16:11:05
阅读次数:
322
题目链接: https://vjudge.net/problem/POJ-1789 题目大意: 用一个7位的string代表一个编号,两个编号之间的distance代表这两个编号之间不同字母的个数。一个编号只能由另一个编号“衍生”出来,代价是这两个编号之间相应的distance,现在要找出一个“衍生 ...
分类:
编程语言 时间:
2018-04-05 16:48:54
阅读次数:
189
4449: [Neerc2015]Distance on Triangulation Description 给定一个凸n边形,以及它的三角剖分。再给定q个询问,每个询问是一对凸多边行上的顶点(a,b),问点a最少经过多少条边(可以是多边形上的边,也可以是剖分上的边)可以到达点b。 给定一个凸n边形 ...
分类:
其他好文 时间:
2018-04-03 23:44:51
阅读次数:
228
*读取一张图像
read_image(Image,'Circle.jpg')
*画生成区域
draw_region(Region, 3600)
*区域->图像
reduce_domain(Image, Region, ImageReduced)
*阈值分割
threshold(ImageReduced, Region1, 0,
分类:
其他好文 时间:
2018-04-03 18:17:11
阅读次数:
1950
1. 音频播放 PlayOneShot : 还有 Play(), Stop() 函数。 2. 粒子特效 常用函数:Play(), Stop(), Pause() 3. 生成砖块(随机方向。随机距离,随即大小,随机颜色) 4. 刚体施加力 AddForce 函数。 ForceMode : 5. 相机跟 ...
分类:
其他好文 时间:
2018-03-30 21:52:01
阅读次数:
186
72. Edit Distance 题目 解析 题目来源 "72. Edit Distance disscus" Space)) ...
分类:
其他好文 时间:
2018-03-30 16:25:23
阅读次数:
85
The Hamming distance between two integers is the number of positions at which the corresponding bits are different. Given two integers x and y, calcul ...
分类:
其他好文 时间:
2018-03-29 21:18:15
阅读次数:
156
贴源码: #coding= utf-8import mathclass Point: def move(self,x,y): self.x = x self.y = y def reset(self): self.move(0,0) def calculate_distance(self,other ...
分类:
其他好文 时间:
2018-03-28 18:44:38
阅读次数:
180
题目链接:https://www.51nod.com/onlineJudge/questionCode.html#!problemId=1183 编辑距离,又称Levenshtein距离(也叫做Edit Distance),是指两个字串之间,由一个转成另一个所需的最少编辑操作次数。许可的编辑操作包括 ...
分类:
其他好文 时间:
2018-03-24 12:47:48
阅读次数:
168
Description An annual bicycle rally will soon begin in Byteburg. The bikers of Byteburg are natural long distance cyclists. Local representatives of m ...
分类:
其他好文 时间:
2018-03-22 13:42:54
阅读次数:
183