关于集合相似性测度的方法做了一些整理: 关于其python语言的算法实现可以参考以下两个链接,就不再赘述: https://mieruca-ai.com/ai/jaccard_dice_simpson/ https://www.jianshu.com/p/a0dfcdf07f18 当然,代码可能只有 ...
分类:
其他好文 时间:
2019-09-19 01:36:09
阅读次数:
197
第四天 A1007 Maximum Subsequence Sum (25 分) 题目内容 Given a sequence of K integers { N1, N2, ..., NK }. A continuous subsequence is defined to be { Ni, Ni+1 ...
分类:
其他好文 时间:
2019-09-16 19:35:37
阅读次数:
81
终于找到一个工具,curator,可以搜索相关信息。 记录一下: 1,查询索引: curator_cli --host 10.2.16.191 --port 9200 show_indices --verbose 2,删除索引: curator_cli --host 10.2.16.191 --po ...
分类:
其他好文 时间:
2019-09-11 15:53:28
阅读次数:
117
文件名:ebCTF-Teaser-BIN100-Dice.exe 话不多说 用PEID一看没壳 拖进OD 让我们摇出31337这五个数字才能拿到正确的flag cmp dword ptr ss:[ebp-0x5C],0x3 原来就是用我们摇出的数字和 他要的数字做比较 如果结果不相等 标志位ZF就= ...
分类:
其他好文 时间:
2019-09-07 22:20:43
阅读次数:
121
Given a dice with n sides, you have to find the expected number of times you have to throw that dice to see all its faces at least once. Assume that t ...
分类:
其他好文 时间:
2019-08-28 00:58:33
阅读次数:
82
原题链接在这里:https://leetcode.com/problems/statistics-from-a-large-sample/ 题目: We sampled integers between 0 and 255, and stored the results in an array co ...
分类:
其他好文 时间:
2019-08-24 13:27:02
阅读次数:
104
#游戏开始,首先玩家选择大小,选择完成后开始摇骰子(11<=总值<=18为大,3<=总值<=10为小) import random def roll_dice(numbers=3,points=None): # 创建3个筛子numbers,创建点数points print('<<<<roll the... ...
分类:
编程语言 时间:
2019-08-21 11:41:55
阅读次数:
88
[toc] 1155 Number of Dice Rolls With Target Sum 掷骰子的N种方法 描述 这里有 个一样的骰子,每个骰子上都有 个面,分别标号为 1, 2, ..., f 。 我们约定:掷骰子的得到总点数为各骰子面朝上的数字的 。 如果需要掷出的总点数为 ,请你计算出有 ...
分类:
其他好文 时间:
2019-08-17 00:45:18
阅读次数:
97
dp[i][j]表示前i个骰子到达数字总和j的方案数 dp[i][j] = Σdp[i-1][j-k],其中k是一个骰子能掷出的范围 ...
分类:
其他好文 时间:
2019-08-11 12:49:44
阅读次数:
118
Given an array of integers and an integer k, find out whether there are two distinct indices i and j in the array such that nums[i] = nums[j] and the ...
分类:
其他好文 时间:
2019-08-10 17:01:29
阅读次数:
75