Givennnon-negative integers representing an elevation map where the width of each bar is 1, compute how much water it is able to trap after raining.Fo...
分类:
移动开发 时间:
2015-03-05 16:23:33
阅读次数:
171
Given n non-negative integers representing an elevation map where the width of each bar is 1, compute how much water it is able to trap after raining.
For example,
Given [0,1,0,2,1,0,1,3,2,1,2,1]...
分类:
移动开发 时间:
2015-03-05 12:54:08
阅读次数:
195
先上一个例子,这段代码是为了评估一个预测模型写的,详细评价说明在https://www.kaggle.com/c/how-much-did-it-rain/details/evaluation,它的核心是要计算在实际计算过程中,n很大(1126694),以至于单进程直接计算时间消耗巨大(14分10秒...
分类:
编程语言 时间:
2015-03-04 12:42:44
阅读次数:
206
首先来看一个草地湿润模型,Cloudy表示天气是否多云,C=1(F)表示False,C=2(T)表示True,一下表示均相同,Sprinklet表示洒水车是否出动,Rain表示是否下雨,WetGrass表示草地是否是湿的。旁边的表格表示各种条件概率。
贝叶斯网络表示:BNT中使用矩阵方式表示贝叶斯网络,即若节点i到j有一条弧,则对应矩阵中(i,j)值为1,否则为0。上图...
分类:
其他好文 时间:
2015-03-03 22:17:31
阅读次数:
557
首先来看一个草地湿润模型,Cloudy表示天气是否多云,C=1(F)表示False,C=2(T)表示True,一下表示均相同,Sprinklet表示洒水车是否出动,Rain表示是否下雨,WetGrass表示草地是否是湿的。旁边的表格表示各种条件概率。
贝叶斯网络表示:BNT中使用矩阵方式表示贝叶斯网络,即若节点i到j有一条弧,则对应矩阵中(i,j)值为1,否则为0。上图是...
分类:
其他好文 时间:
2015-03-03 15:15:05
阅读次数:
692
首先来看一个草地湿润模型,Cloudy表示天气是否多云C=1(F)表示False,C=2(T)表示True,一下表示均相同,Sprinklet表示洒水车是否出动,Rain表示是否下雨,WetGrass表示草地是否是湿的。旁边的表格表示各种条件概率。clear;clc;
N = 4; %四个节点 分别是cloudy,sprinkler,rain,wet...
分类:
其他好文 时间:
2015-03-03 13:44:26
阅读次数:
2604
[LeetCode] 011. Container With Most Water (Medium) (C++/Java/Python)...
分类:
编程语言 时间:
2015-03-02 23:58:34
阅读次数:
408
Drinking waterAccording to a 2011 review, biofilms in drinking water systems can serve as a significant environmental reservoir for pathogenic microor...
分类:
其他好文 时间:
2015-03-02 12:49:22
阅读次数:
131
/*此题的方法除了用线段树求子树,通过标记父亲,更新儿子的方法,来更新祖先,学习了。
对于建树的方法由于并没有说明父亲与儿子的顺序,所以需要通过两次添加。
并且pre变量可以获得父亲的位置,还未弄懂!
*/
#define _CRT_SECURE_NO_WARNINGS
#include
#include
#include
#include<al...
分类:
其他好文 时间:
2015-02-26 23:02:27
阅读次数:
202
Problem:
Given n non-negative integers representing an elevation map where the width of each bar is 1, compute how much water it is able to trap after raining.
For example,
Given [0,1,0,2,1,...
分类:
移动开发 时间:
2015-02-22 14:39:33
阅读次数:
144