Shortest Path Tree Description: ? Directed edge $(u,v)$ in tree if $u$ last relax $v$ , the root is $S$ or $T$ . The classic problem : ? forall edge $ ...
分类:
其他好文 时间:
2019-08-08 19:33:53
阅读次数:
126
给定一个无重复元素的数组 candidates 和一个目标数 target ,找出 candidates 中所有可以使数字和为 target 的组合。 candidates 中的数字可以无限制重复被选取。 说明: 所有数字(包括 target)都是正整数。 解集不能包含重复的组合。 示例 1: 示例 ...
分类:
其他好文 时间:
2019-08-07 22:11:30
阅读次数:
62
1、Normal distribution In probability theory, the normal (or Gaussian or Gauss or Laplace–Gauss) distribution is a very common continuous probability d ...
分类:
其他好文 时间:
2019-08-03 21:22:11
阅读次数:
119
T1: 1 菠萝包 1.1 Description萨塔妮亚正在吃菠萝包,可她不知道菠萝包被人涂上了芥末。菠萝包表面烤出了一个n * m 的网格,其中有一些格子涂上了芥末。萨塔妮亚会一口咬下其中k * k 大小的一个正方形网格,这k * k格中如果有一格有芥末,萨塔妮亚就会呛到无法自拔。你想知道 ...
分类:
其他好文 时间:
2019-07-29 21:36:03
阅读次数:
102
It is well known that AekdyCoin is good at string problems as well as number theory problems. When given a string s, we can write down all the non-emp ...
分类:
其他好文 时间:
2019-07-27 11:13:54
阅读次数:
115
It is well known that AekdyCoin is good at string problems as well as number theory problems. When given a string s, we can write down all the non-emp ...
分类:
其他好文 时间:
2019-07-19 18:57:51
阅读次数:
81
(PP 1.1) Measure theory: Why measure theory - The Banach-Tarski Paradox ball -> tear down to pieces -> rigid transformation (translation/rotation) -> ...
分类:
其他好文 时间:
2019-06-07 11:06:02
阅读次数:
93
混沌理论(Chaos theory)是关于非线性系统在一定参数条件下展现分岔(bifurcation)、周期运动与非周期运动相互纠缠,以至于通向某种非周期有序运动的理论。在耗散系统和保守系统中,混沌运动有不同表现,前者有吸引子,后者无(也称含混吸引子)。 从20世纪80年代中期到20世纪末,混沌理论 ...
分类:
其他好文 时间:
2019-06-02 17:43:22
阅读次数:
448
Source: PAT A1126 Eulerian Path (25 分) Description: In graph theory, an Eulerian path is a path in a graph which visits every edge exactly once. Simil ...
分类:
其他好文 时间:
2019-06-01 21:13:11
阅读次数:
128
题目描述 给定一个数组 和一个目标数 ,找出 中所有可以使数字和为 的组合。 中的每个数字在每个组合中只能使用一次。 说明: 所有数字(包括目标数)都是正整数。 解集不能包含重复的组合。 示例 1: 示例 2: 分析 (DFS枚举) 做法与 "Combination Sum" 很类似,只不过本题是每 ...
分类:
其他好文 时间:
2019-05-19 12:02:50
阅读次数:
173