上一页 1 ··· 44 45 46 47 48 49 50 51 52 ··· 72 下一页

2019年4月9日

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) 编辑

2019年4月8日

概率dp

摘要: 一:Uva12230Crossing Rivers (数学期望)题目大意:有个人每天要去公司上班,每次会经过N条河,家和公司的距离为D,默认在陆地的速度为1,给出N条河的信息,包括起始坐标p,宽度L,以及船的速度v。船会往返在河的两岸,人到达河岸时,船的位置是随机的(往返中)。问说人达到公司所需要的 阅读全文

posted @ 2019-04-08 22:31 cltt 阅读(114) 评论(0) 推荐(0) 编辑

重载问题

摘要: #include <iostream> #include <cstdio> #include <cstring> #include <algorithm> #include <cmath> #include <map> #include <utility> #include <vector> #in 阅读全文

posted @ 2019-04-08 21:01 cltt 阅读(108) 评论(0) 推荐(0) 编辑

树上dfs+思维

摘要: 1 #include 2 const int N=1000010; 3 int cnt,head[N],n; 4 int size[N],num[N]; 5 void init() 6 { 7 cnt = 0; 8 for(int i =0;i<N;i++) head[i]=-1; 9 } 10 struct Node{ 11 int... 阅读全文

posted @ 2019-04-08 00:00 cltt 阅读(115) 评论(0) 推荐(0) 编辑

2019年4月7日

CERC2017 F: Faulty Factorial 简单数论题

摘要: 1 #include 2 using namespace std; 3 #define ll long long 4 const int N = 10000006; 5 ll n,p,r; 6 ll poww(ll a,ll b){ 7 ll ans =1ll; 8 while(b){ 9 if(b&1) ans =ans... 阅读全文

posted @ 2019-04-07 21:45 cltt 阅读(224) 评论(0) 推荐(0) 编辑

win10 解决“ 'g++' 不是内部或外部命令,也不是可运行的程序或批处理文件”的问题

摘要: https://www.jianshu.com/p/9bffbaf12bed 2. 安装MinGW 将MinGW安装在D:\mingw文件夹下(可自由选择,这里为之后添加环境变量作为范例) 安装好后选择需要下载的安装包,选择All packets->MinGW->MinGW Base System- 阅读全文

posted @ 2019-04-07 21:17 cltt 阅读(1375) 评论(0) 推荐(0) 编辑

2019年4月4日

L2-029 特立独行的幸福 (25 分)

摘要: L2-029 特立独行的幸福 (25 分) L2-029 特立独行的幸福 (25 分) L2-029 特立独行的幸福 (25 分) 对一个十进制数的各位数字做一次平方和,称作一次迭代。如果一个十进制数能通过若干次迭代得到 1,就称该数为幸福数。1 是一个幸福数。此外,例如 19 经过 1 次迭代得到 阅读全文

posted @ 2019-04-04 21:19 cltt 阅读(806) 评论(0) 推荐(0) 编辑

L2-032 彩虹瓶 (25 分)

摘要: L2-032 彩虹瓶 (25 分) L2-032 彩虹瓶 (25 分) L2-032 彩虹瓶 (25 分) 彩虹瓶的制作过程(并不)是这样的:先把一大批空瓶铺放在装填场地上,然后按照一定的顺序将每种颜色的小球均匀撒到这批瓶子里。 假设彩虹瓶里要按顺序装 N 种颜色的小球(不妨将顺序就编号为 1 到 阅读全文

posted @ 2019-04-04 19:40 cltt 阅读(274) 评论(0) 推荐(0) 编辑

字符串函数

摘要: #include using namespace std; const int N = 1010; int main(){ char str[256] = { 0 };//str的大小(256)一定要填的。 int data = 1024; /* //将data转换为字符串 sprintf(str,"%d",data); cout #includ... 阅读全文

posted @ 2019-04-04 16:14 cltt 阅读(118) 评论(0) 推荐(0) 编辑

字符串模拟

摘要: L1-064 估值一亿的AI核心代码 (20 分) L1-064 估值一亿的AI核心代码 (20 分) L1-064 估值一亿的AI核心代码 (20 分) 以上图片来自新浪微博。 本题要求你实现一个稍微更值钱一点的 AI 英文问答程序,规则是: 无论用户说什么,首先把对方说的话在一行中原样打印出来; 阅读全文

posted @ 2019-04-04 16:05 cltt 阅读(316) 评论(0) 推荐(0) 编辑

上一页 1 ··· 44 45 46 47 48 49 50 51 52 ··· 72 下一页

导航