2019年4月9日

随机函数

摘要: #include using namespace std; int main() { srand((unsigned)time(NULL)); //产生的随机数范围是0~65536, for(int i = 0; i < 10;i++ ) cout << rand() << '\n'; cout << endl; ... 阅读全文

posted @ 2019-04-09 21:40 cltt 阅读(435) 评论(0) 推荐(0) 编辑

UVA - 12230

摘要: 1 #include 2 using namespace std; 3 int n; 4 double d; 5 double p,l,v,ret,sum; 6 int cnt =1; 7 /* 8 9 村庄A,B之间有若干条河流,每条河流上的船速各自保持不变。告诉河流条数,两个村庄之间的距离 10 以及每条河流的距离A村庄的位置,宽度,船的速度。求A... 阅读全文

posted @ 2019-04-09 15:43 cltt 阅读(87) 评论(0) 推荐(0) 编辑

spoj1026 favorite dice

摘要: 1 #include 2 using namespace std; 3 int n,t; 4 const int N = 1200; 5 double dp[N]; 6 /* 7 甩一个n面的骰子,问每一面都被甩到的需要甩的次数期望是多少。 8 dp[i]:已经甩到i个面了,要达到n个面还需要次数的期望 9 显然dp[n] = 0 10 那么逆序分析:dp[i] :再甩一... 阅读全文

posted @ 2019-04-09 15:31 cltt 阅读(90) 评论(0) 推荐(0) 编辑

导航