\(dp[0/1][i]\) :有 \(i\) 颗石子 Alice/Bob 为先手,Alice 赢的概率 令 \(P\) 为 Alice 拿走石子的概率, \(Q\) 为 Bob 拿走石子的概率。 $$\begin dp[0][i]=dp[1][i-1] * P+dp[1][i] * (1-P) \ ...
分类:
其他好文 时间:
2021-04-09 13:18:19
阅读次数:
0
环境准备: 系统版本:CentOS Linux release 7.5.1804 (Core) 软件版本:apache-maven-3.8.1-bin.zip 安装目录:/application/ 安装: 下载安装包: wget https://mirrors.bfsu.edu.cn/apache/ ...
分类:
其他好文 时间:
2021-04-09 13:05:21
阅读次数:
0
Markdown Study 标题: 两个##+空格 二级标题;三个###+空格 三级标题 title title 字体: HelloWorld! 两边都加两个* 字体加粗 HelloWorld! 两边都加一个* 为斜体 HelloWorld! 两边加三个* 字体斜体加粗 HelloWorld! 两 ...
分类:
编程语言 时间:
2021-04-08 13:50:49
阅读次数:
0
针对 12 月31 日返利系统问题复盘如下: 问题一 12 月 31号 返利系统费用单未及时传送结算,导致结算无法及时计算,导致后续流程无法进行。。 问题出现及处理过程: 12 月 31 号,下午 5 点半左右业务人员反映有两百多万个费用明细已审核,但未收取。经查询,返利已审核后已经发送结算系统,然 ...
分类:
其他好文 时间:
2021-04-08 13:47:05
阅读次数:
0
例子 from rest_framework.views import APIView class StudentAPIView(APIView): def get(self, request): pk = request.query_params.get(pk) student_obj = Stu ...
分类:
Web程序 时间:
2021-04-08 13:26:42
阅读次数:
0
目的:减少重复性代码,增加快捷高效的复制粘贴 所需要的依赖 <dependency> <groupId>dom4j</groupId> <artifactId>dom4j</artifactId> <version>1.6.1</version> </dependency> <dependency> ...
分类:
编程语言 时间:
2021-04-08 13:15:23
阅读次数:
0
Markdown学习 标题 三级标题 四级标题 字体 Hello word! Hello word! *Hello word! Hello word! Hello word! 引用 淳无敌 分割线 图片 超链接 点击童无敌 列表 A c d a b c 表格 代码 java ...
分类:
其他好文 时间:
2021-04-07 11:43:53
阅读次数:
0
重要组件:1.query解析;2.目标召回;3.目标排序 解决问题:1.语义检索问题;2.个性化检索问题 如何召回语义上相似但没有明确和query项匹配的物品 针对不同的人相同的搜索词,希望召回一些个性化的物品,较为发散 应用依据:电商领域最常用的召回当属item-based CF,此类方法根据it ...
分类:
其他好文 时间:
2021-04-07 11:36:41
阅读次数:
0
#include<bits/stdc++.h>using namespace std;int maze [5][5] = {0, 1, 0, 0, 0,0, 1, 0, 1, 0,0, 0, 0, 0, 0,0, 1, 1, 1, 0,0, 0, 0, 1, 0,};typedef struct { ...
分类:
其他好文 时间:
2021-04-07 11:33:01
阅读次数:
0
匿名函数lambda: # def foo(x,y):# return x+y## foo(12,4)#python的匿名函数: lambda 参数:函数体# print((lambda x,y:x+y)(12,4))a = [1,2,3,4,5,6]# def foo(x):# return x ...
分类:
编程语言 时间:
2021-04-07 11:31:34
阅读次数:
0