#include #include #include #include #include using namespace std;list::iterator group_pick(list &player, list::iterator &cur, int group_size, vector &...
分类:
其他好文 时间:
2014-11-06 17:04:49
阅读次数:
187
code forces 148D Bag of mice (概率DP) ——black的专栏——waShaXiu...
分类:
其他好文 时间:
2014-10-19 14:24:25
阅读次数:
235
Problem Description
Jerboas are small desert-living animals, which resemble mice with a long tufted tail and very long hind legs. Jerboas shelter in well-hidden burrows. They create two types o...
分类:
其他好文 时间:
2014-08-13 10:33:25
阅读次数:
259
1 resemble 与..类似 ivory 象牙,乳白色n,adj spinet小型钢琴 eg. His nails resemble the ivory keys of the spinet.他的指甲象白色的琴键一样 2 wander around闲逛 3 mice老鼠(mouse的复数),胆小...
分类:
其他好文 时间:
2014-08-11 20:27:32
阅读次数:
173
dp[x][y]:如今有x个白老鼠,y个黑老鼠,公主赢的概率。那么:假设公主直接拿到白老鼠,概率为x/(x+y),公主赢。假设公主拿到黑老鼠,概率为y/(x+y),那么公主假设想赢,龙必须拿到黑老鼠,概率为(y-1)/(x+y-1);那么逃跑的老鼠为黑老鼠的概率为(y-2)/(x+y-2),为白老鼠...
分类:
其他好文 时间:
2014-07-22 22:36:54
阅读次数:
205
Problem Description
FatMouse believes that the fatter a mouse is, the faster it runs. To disprove this, you want to take the data on a collection of mice and put as large a subset of this data as p...
分类:
其他好文 时间:
2014-07-16 08:00:45
阅读次数:
347
dp[x][y]:现在有x个白老鼠,y个黑老鼠,公主赢的概率。
那么:
如果公主直接拿到白老鼠,概率为x/(x+y),公主赢。
如果公主拿到黑老鼠,概率为y/(x+y),那么公主如果想赢,龙必须拿到黑老鼠,概率为(y-1)/(x+y-1);
那么逃跑的老鼠为黑老鼠的概率为(y-2)/(x+y-2),为白老鼠的概率为(x)/(x+y-2);
那么dp[x][y]=x/(x+y)+y/(x+...
分类:
其他好文 时间:
2014-06-24 21:22:47
阅读次数:
169
1.DDI供应商分三类:-大型的IT供应商(Miscrosoft、Cisco、Alcatel-Lucent、BT)-中型的专注于DDI的供应商(Infoblox、BlueCat)-小型的/区域的供应商(EfficientIP、NixuSoftware、Men&Mice)2.DDI解决方案的用户粘性强,因为DNS服务很关键,更换供应商的迁移成本高3.DDI..
分类:
其他好文 时间:
2014-05-27 03:51:25
阅读次数:
479
在qt开发时,碰到的问题,usb输入设备(鼠标,usb 电容屏等)上电后会自动分配input节点,比如usb鼠标插着上电后,自动分配到/dev/input/event0 mouse0,插拔一次后,节点会自动往后增加,变为/dev/input/event1mouse1
对于鼠标类型的设备,/dev/input/mouseX 的所有消息都会汇总到/dev/input/mice,因此,qt的QW...
分类:
系统相关 时间:
2014-05-08 10:56:54
阅读次数:
677