为了统计每个窗口下最热门的商品,我们需要再次按窗口进行分组,这里根据ItemViewCount中的windowEnd进行keyBy()操作。然后使用ProcessFunction实现一个自定义的TopN函数TopNHotItems来计算点击量排名前3名的商品,并将排名结果格式化成字符串,便于后续输出 ...
分类:
其他好文 时间:
2020-07-09 22:16:52
阅读次数:
165
集群的运行状况 GET /_cat/health?v 获取集群中的节点列表 GET /_cat/nodes?v 列出所有索引 GET /_cat/indices?v 创建索引 指定参数 PUT twitter { "settings" : { "index" : { "number_of_shard ...
分类:
其他好文 时间:
2020-07-05 00:27:57
阅读次数:
69
CCSU团队训练赛 总结:菜,菜在马力,菜在思维,菜在体力。 题目如下 A - Play the Dice 题意:掷骰子,给长度为n的数组指点数,每个被掷中概率为1/n,m个特殊骰子,掷中还能掷一次,求期望。 题解:水题,算出不能多掷的期望,与多掷一次的概率,联立方程直接搞。 代码部分 #inclu ...
分类:
其他好文 时间:
2020-06-28 00:36:07
阅读次数:
74
设置拦截 axios.interceptors.request.use((config) => { if (config.method 'post') { if (!config.isFormData) { config.data = qs.stringify(config.data,{ indic ...
分类:
移动开发 时间:
2020-05-14 22:18:46
阅读次数:
163
Given an array of integers, return indices of the two numbers such that they add up to a specific target. You may assume that each input would have ex ...
分类:
其他好文 时间:
2020-04-21 18:36:52
阅读次数:
67
比如频繁报如下错误, 如果你google,可以搜到 "https://blog.csdn.net/ypc123ypc/article/details/69944805" 他那里面解决方案是调整 fielddata ,但此报错并非fielddata 缓存问题, 根本原因是 "parent] 内存不够了 ...
分类:
其他好文 时间:
2020-04-04 17:23:42
阅读次数:
328
"$\large{题目链接}$" $\\$ $\Large\textbf{Solution: } \large{1.如果目前我们已经有i种数字,那么下一次投掷有\dfrac {n i}{n}的概率得到目前没有的数字,所以期望的步数是\dfrac {n}{n i},那么期望总步数即为\sum \lim ...
分类:
其他好文 时间:
2020-04-02 19:49:23
阅读次数:
73
题目 Given an array of integers, find out whether there are two distinct indices i and j in the array such that the absolute difference between and is a ...
分类:
其他好文 时间:
2020-03-31 01:13:11
阅读次数:
88
简介 长链剖分是跟 dsu on tree 类似的小$trick$,可以资瓷 维护子树中只与深度有关的信息 。 并能达到 线性 的时间复杂度。 算法流程 对于每个点,记录 重儿子 $heavy[u]$表示深度最大的儿子,其余作为 轻儿子 。 这样我们可以得到若干条 互不相交 的长链。 在维护信息的过 ...
分类:
编程语言 时间:
2020-03-28 23:34:00
阅读次数:
93
$\text{D. Deceptive Dice}$ $\text{I. }$题意 你有一个 $n$ 个面的骰子,各面分别有 $1,2,\cdots,n$ 点;一开始你转动骰子,然后你有两个选择: 让骰子停止转动; 重新转动骰子. 你最多可以转动 $k$ 次骰子,你的得分为让骰子停止后骰子的点数,求 ...
分类:
其他好文 时间:
2020-03-15 19:05:01
阅读次数:
100