相关度研究记录手稿 1.orderNum字段相关度 增强 score = math.sqrt(orderNum*0.001) ScoreFunctionBuilder<?> dateFieldValueScoreFunction = ScoreFunctionBuilders.fieldValueF ...
分类:
其他好文 时间:
2020-05-22 12:51:01
阅读次数:
62
数论课堂 a[i]直接O(n)递推 然后就是求约数集合d[i] d[i]暴力求是O(n sqrt(n)) 的过不去 然后这里的优化 ...
分类:
其他好文 时间:
2020-05-22 00:29:41
阅读次数:
52
"Line belt" 思路 我们假定在$A, B$上选取点$E$,在$C, D$上选取点$F$,我们的移动路径是$A E F D$。 当我们确定$E$点时,不难发现$dis(E F + F D)$是一个凹函数,具有极小值。 当我们确定$F$点时不难发现$dis(A E + E F)$也是一个凹函数 ...
分类:
其他好文 时间:
2020-05-21 11:49:06
阅读次数:
38
题目链接:http://codeforces.com/contest/937/problem/B 这道题,直接暴力,我们知道质数一定是可以的,据说10e9内两个质数相差不超过300,直接从y减到p,反正不超过300就会有质数出现,然后质数一定是符合要求的,然后最多300次 * sqrt(i)(每次耗 ...
分类:
其他好文 时间:
2020-05-19 21:03:02
阅读次数:
63
int count = 0; int count2 = 0; for(int i = 2;i<=500;i++){ //证明 count2++; boolean is = true; for(int j = 2;j<=Math.sqrt(i);j++){ count2++; if(i%j==0){ ...
分类:
其他好文 时间:
2020-05-19 00:58:24
阅读次数:
51
GSS问题(二) 仍然是线段树的应用模板题,非常经典 题面 $n$个数,$n\leqslant1e5$,和$\leqslant10^{18}$,全是自然数 ~~翻译:long long能过~~ 给出两种操作: 区间开方$\rightarrow$将区间每一个数单独开方,下取整 区间求和$\righta ...
分类:
其他好文 时间:
2020-05-18 20:40:50
阅读次数:
44
1 """ 2 两个点 (x1,y1) (x2,y2) 3 距离 math.sqrt((x1-x2)**2 + (y1-y2)**2) 4 """ 5 import math 6 def getDis(x1,y1,x2,y2): 7 return math.sqrt((x1-x2)**2 + (y1 ...
分类:
其他好文 时间:
2020-05-16 17:16:19
阅读次数:
65
使用canvas制作的移动端color picker 我在另一个demo中,需要用到color picker,但是找不到我需要的移动端color picker,很多都是pc的,然后发现input[type='color']这个东西存在,发现安卓没问题,ios却不支持,但是我看安卓那个color pi ...
分类:
移动开发 时间:
2020-05-16 16:26:27
阅读次数:
92
https://loj.ac/problem/6279 vector+块内二分。 修改时需要重构,查询时可以二分查出来。 不要忘记 add 标记! ...
分类:
其他好文 时间:
2020-05-16 15:13:10
阅读次数:
55