$其实思路都能想到一点,就是去重这里特别麻烦,没有好的思路。$ $设dp[i][j]为以i为根深度为j的节点数量$ $dp[parent][j]=\sum{dp[son][j 1]}$ $然后把每个节点作为转折点求答案$ ...
分类:
其他好文 时间:
2020-05-04 17:28:14
阅读次数:
69
问题: 求给定数组中两两元素之差,从小到大第k个差是多少 Example 1: Input: nums = [1,3,1] k = 1 Output: 0 Explanation: Here are all the pairs: (1,3) -> 2 (1,1) -> 0 (3,1) -> 2 Th ...
分类:
其他好文 时间:
2020-05-04 15:42:43
阅读次数:
48
oracle里面查比如存储过程里面与表SALES有关jobs: SELECT * FROM (SELECT a.name,upper(b.what)AS what,SYS.UTL_MATCH.edit_distance_similarity (a.name,upper(b.what)) AS sim ...
分类:
其他好文 时间:
2020-05-03 12:52:22
阅读次数:
51
如何运行的? new Vue({ el:'#app-1', data:{ position:{ distance:10, height:30, } }, methods:{ flying:function(){ var targetPos = {distance:300,height:120} va ...
分类:
Web程序 时间:
2020-05-02 20:51:50
阅读次数:
60
实现效果: 下面讲解下从PS制图开始到unity中效果完成。 1、Node背景制作没什么需要注意的,在PS中制作一个白色图像,然后在unity中调整颜色即可。 2、虚线的制作,需要在边界留有一部分的透明像素: 3、unity中的UI结构: line的设置需要设置为Titled类型,然后通过调整Ima ...
分类:
其他好文 时间:
2020-04-29 18:25:21
阅读次数:
61
import math def distance(a,b,c): d = math.sqrt(a*a + b*b + c*c) return d x,y,z=input().split(",") d=distance(float(x),float(y),float(z)) print("{:.2f} ...
分类:
其他好文 时间:
2020-04-14 23:05:47
阅读次数:
297
Problem : The Hamming distance between two integers is the number of positions at which the corresponding bits are different. Now your job is to find ...
分类:
其他好文 时间:
2020-04-13 12:22:42
阅读次数:
64
给定 n 个非负整数表示每个宽度为 1 的柱子的高度图,计算按此排列的柱子,下雨之后能接多少雨水。 上面是由数组 [0,1,0,2,1,0,1,3,2,1,2,1] 表示的高度图,在这种情况下,可以接 6 个单位的雨水(蓝色部分表示雨水)。 感谢 Marcos 贡献此图。 示例: 输入: [0,1, ...
分类:
其他好文 时间:
2020-04-06 22:14:16
阅读次数:
81
We have a list of points on the plane. Find the K closest points to the origin (0, 0). (Here, the distance between two points on a plane is the Euclid ...
分类:
其他好文 时间:
2020-04-06 09:25:29
阅读次数:
73
fit_line_contour_xld (BottomEdgeContours, 'huber', -1, 0, 5, 2, RowBegin, ColBegin, RowEnd, ColEnd, Nr, Nc, Dist) 存在bug,结果RowBegin, ColBegin, RowEnd, ...
分类:
其他好文 时间:
2020-04-05 11:46:59
阅读次数:
127