题意 飞行棋。有n+1格,开始时在0号格子,每一步都要扔一个dice(六个面,概率相同)哪一面朝上他就会向前走x+i步。当x+i大于等于N的时候,游戏结束。另外,地图上有m条航线。第i条航线可以直接从xi到yi。计算扔dice次数的期望。 分析 这个题有一个默认的条件,如果当前格子有航线可以选择,那 ...
分类:
其他好文 时间:
2018-05-24 18:55:29
阅读次数:
204
#include<iostream> #include<cstdlib> #include<ctime> using namespace std; class Dice{ public: Dice(int n); int cast(); private: int sides; }; Dice::Di ...
分类:
其他好文 时间:
2018-05-23 23:41:06
阅读次数:
320
``` include include include using namespace std; class Dice{ public: Dice(int n); int cast() { int number=rand()%sides+1; return number; } private: in ...
分类:
其他好文 时间:
2018-05-23 20:28:50
阅读次数:
152
期中考试第一题 include include include using namespace std; class Dice{ public: Dice(int n); int cast() { int number=rand()%sides+1; return number; } private ...
分类:
其他好文 时间:
2018-05-19 15:43:37
阅读次数:
159
虽然这个试题在考试时没能做出来qaq,不过我还是觉得有必要搞清楚知识点,所以今天结合上网查的一些知识点和书本还是把它做出来了 题一 Dice类 这个类很简单,考试时就做出来了,就不多说了,上代码和截图 题二 User类 考试时就是死在这个类上了,一直在纠结那个怎么获得最后一个对象的地址,那个静态变量 ...
分类:
其他好文 时间:
2018-05-09 19:35:26
阅读次数:
157
期中考试 ================== 第一题 include include using namespace std; class Dice { public: Dice(int n); friend int cast(Dice &p1); private: int sides; }; D ...
分类:
其他好文 时间:
2018-05-08 14:40:12
阅读次数:
166
Introduction In this project, you will develop a simulator and multiple strategies for the dice game Hog. You will need to use control statements and ...
分类:
其他好文 时间:
2018-05-04 11:45:45
阅读次数:
456
There is a very simple and interesting one-person game. You have 3 dice, namely Die1, Die2 and Die3. Die1 has K1 faces. Die2 has K2 faces. Die3 has K3 ...
分类:
其他好文 时间:
2018-05-03 10:30:03
阅读次数:
189
1 import tensorflow as tf 2 from tensorflow.examples.tutorials.mnist import input_data 3 4 '''数据下载''' 5 mnist=input_data.read_data_sets('Mnist_data',o... ...
分类:
其他好文 时间:
2018-04-20 11:42:21
阅读次数:
295
"vjudge" 题意 $m$面骰子,求 1.连续出现$n$个相同的停止; 2.连续出现$n$个不同的停止 的期望投骰子次数。 $n,m ≤ 10^6$ sol 首先考虑一个转移式子吧。 设$f_i,g_i$分别表示已经连续出现了$i$个相同/不同时的期望步数: $$f_i=\frac 1mf_{i ...
分类:
其他好文 时间:
2018-03-29 13:29:53
阅读次数:
147