On an NxN chessboard, a knight starts at the r-th row and c-th column and attempts to make exactly K moves. The rows and columns are 0 indexed, so the ...
分类:
其他好文 时间:
2017-10-09 00:27:39
阅读次数:
333
原题链接在这里:https://leetcode.com/problems/knight-probability-in-chessboard/description/ 题目: On an NxN chessboard, a knight starts at the r-th row and c-th ...
分类:
其他好文 时间:
2017-10-07 12:32:02
阅读次数:
205
有n个人准备去超市逛,其中第i个人买东西的概率是P i 。逛完以后你得知有r个人买了东西。根据这一信息,请计算每个人实际买了东西的概率。输入n(1≤n≤20)和r(0≤r≤n),输出每个人实际买了东西的概率。 概率 套公式 屠龙宝刀点击就送 ...
分类:
其他好文 时间:
2017-09-28 13:05:18
阅读次数:
122
Probability|Given 有n个人准备去超市逛,其中第i个人买东西的概率是P i 。逛完以后你得知有r个人买了东西。根据这一信息,请计算每个人实际买了东西的概率。输入n(1≤n≤20)和r(0≤r≤n),输出每个人实际买了东西的概率。 思路: 事件A:n个人中有r个人买东西 事件B:第i个 ...
分类:
其他好文 时间:
2017-09-28 12:58:30
阅读次数:
157
第六章 SGP自然概率(spontanneous generation probability) 低端(low-tech) 高端(height-tech) 无线电波每秒钟前进近30公里 第七章 惰性(Inertia) 动物彩妆《Animal Coloration》 脑商(encephalizatio ...
分类:
其他好文 时间:
2017-09-24 18:19:19
阅读次数:
161
参考网址: 1. https://en.wikipedia.org/wiki/First-hitting-time_model 2. https://en.wikipedia.org/wiki/Laplace_transform Probability theory By abuse of lang ...
分类:
其他好文 时间:
2017-09-23 13:44:52
阅读次数:
144
Bob has a not even coin, every time he tosses the coin, the probability that the coin's front face up is qp(qp≤12)\frac{q}{p}(\frac{q}{p} \le \frac{1} ...
分类:
其他好文 时间:
2017-09-17 13:48:47
阅读次数:
394
Bob has a not even coin(就是一个不均匀的硬币,朝上的概率不一定是1/2), every time he tosses the coin, the probability that the coin's front face up is q/p(q/p<=1/2). The q ...
分类:
其他好文 时间:
2017-09-17 13:36:10
阅读次数:
292
题目链接:http://poj.org/problem?id=3744 题意: 有n个地雷,位置为pos[i]。 在每个位置,你向前走一步的概率为p,向前走两步的概率为1-p。 你的初始位置为1。 问你通过雷区的概率。 题解: 表示状态: dp[i] = probability moving to ...
分类:
其他好文 时间:
2017-09-02 09:41:05
阅读次数:
241
在看《程序员的数学2——概率统计》关于离散型随机变量的大数定律解释时,有两个概念一定需要弄明白: 在《Probability and Statistics》这本国外的经典教材第四章第一小节中,强调了随机变量的期望只与随机变量的分布有关系: Note: The Expectation of X Dep ...
分类:
其他好文 时间:
2017-08-29 21:46:48
阅读次数:
148