题目链接:点击打开链接
#include
#include
#include
using namespace std;
#define INF 0x3f3f3f3f
#define eps 1e-8
#define pi acos(-1.0)
typedef long long ll;
int main()
{
int i, j;
double m,n;
while...
分类:
其他好文 时间:
2014-08-02 18:20:43
阅读次数:
233
输入n、m,表示一个n面的色子(面上的值为1-n),投掷m次,求得到的最大值的期望(1?≤?m,?n?≤?105)....
分类:
其他好文 时间:
2014-08-02 12:57:13
阅读次数:
189
题目链接题意:分析: 1 #include 2 #include 3 #include 4 #include 5 #include 6 #include 7 #include 8 #define LL long long 9 using namespace std;10 11 int ...
分类:
其他好文 时间:
2014-08-02 12:43:43
阅读次数:
217
1 /* 2 我们枚举每次选择最大数值的情况:m个数, 投掷n次 3 最大值是1: 1种 4 2: 2^n-1 5 3: 3^n-2^n 6 ..... 7 m: m^n...
分类:
其他好文 时间:
2014-08-02 09:56:53
阅读次数:
205
shell脚本报错:"[:=:unaryoperatorexpected"md5_109a="81ab961153b62d207f0f517048881b5d"md5_109b=`md5suminstall.bin|awk‘{print$1}‘`if[$md5_109a!=$md5_109b]原因,当文件install.bin不存在时,$md5_109b为空这样对比字符串就变成了if[81ab961153b62d207f0f517048881b5d!..
分类:
其他好文 时间:
2014-07-23 00:20:38
阅读次数:
211
wxAuiToolBar‘s overflow function cannot work as expected, when as pane in wxAuiManager, on GTK. ![1][1] ![2][2] 当增加一个AuiToolBar到一个auimanager之后,如果想用它的overflow feature,在gtk平台,无...
分类:
其他好文 时间:
2014-07-22 08:16:37
阅读次数:
228
Linux C/C++编程时常会遇到“error: expected expression before ‘struct’”错误,此错误一般是由未定义的宏(宏里套宏)或参量引起,导致编译器判断当前语句为非法语句,可能有如下几种情况。1、缺少ioctl.h头文件调用ioctl函数,用到参数VIDIOC...
分类:
其他好文 时间:
2014-07-21 23:30:23
阅读次数:
215
当在企业部署SystemCenter2012R2ConfigurationManager时,需要考虑硬件、软件等信息确保当部署完成之后能够正常工作。1.硬件信息:当部署SystemCenter2012R2ConfigurationManager时,请确保一下硬件信息满足。lCPU:AMDOpteron,AMDAthlon64,IntelXeonwithIntelEM64Tsupport,Inte..
分类:
其他好文 时间:
2014-07-20 03:28:36
阅读次数:
314
1、RemoteSolrException: Expected mime type application/octet-stream but got text/html
现象:
SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
SLF4J: Defaulting to no-operation (NOP) log...
分类:
其他好文 时间:
2014-07-19 12:07:08
阅读次数:
267
UVA 11427 - Expect the Expected
题目链接
题意:玩一个游戏,赢的概率p,一个晚上能玩n盘,如果n盘都没赢到总赢的盘数比例大于等于p,以后都不再玩了,如果有到p就结束
思路:递推,dp[i][j]表示玩i盘,赢j盘的概率,那么一个晚上玩了n盘小于p的概率递推式为:
dp(i,j)=dp(i?1,j)?(1?p)+dp(i?1,j?1)?p
总和为...
分类:
其他好文 时间:
2014-07-17 16:30:01
阅读次数:
171