摘要: The United Nations has decided to build a new headquarters in Saint Petersburg, Russia. It will have aform of a rectangular parallelepiped and will co 阅读全文
posted @ 2016-04-11 23:49 Orion_7 阅读(292) 评论(0) 推荐(0) 编辑
摘要: Background Stacks and Queues are often considered the bread and butter of data structures and find use in architecture, parsing, operating systems, an 阅读全文
posted @ 2016-04-11 23:43 Orion_7 阅读(311) 评论(0) 推荐(0) 编辑
摘要: In a serious attempt to downsize (reduce) the dole queue, The New National Green Labour Rhinoceros Party has decided on the following strategy. Every 阅读全文
posted @ 2016-04-05 18:45 Orion_7 阅读(241) 评论(0) 推荐(0) 编辑
摘要: A common typing error is to place the hands on the keyboard one row to the right of the correct position. So ‘Q’ is typed as ‘W’ and ‘J’ is typed as ‘ 阅读全文
posted @ 2016-04-05 18:40 Orion_7 阅读(212) 评论(0) 推荐(0) 编辑
摘要: quicksum Queation: Given a string of digits, find the minimum number of additions required for the string to equal some target number. Each addition i 阅读全文
posted @ 2016-04-05 18:32 Orion_7 阅读(160) 评论(0) 推荐(0) 编辑
摘要: T1 生活大爆炸版石头剪刀布 题目描述 石头剪刀布是常见的猜拳游戏:石头胜剪刀,剪刀胜布,布胜石头。如果两个人出拳一样,则不分胜负。在《生活大爆炸》第二季第8 集中出现了一种石头剪刀布的升级版游戏。 升级版游戏在传统的石头剪刀布游戏的基础上,增加了两个新手势: 斯波克:《星际迷航》主角之一。 蜥蜴人 阅读全文
posted @ 2016-04-02 17:57 Orion_7 阅读(149) 评论(0) 推荐(0) 编辑
摘要: T1 计数问题 题目描述 试计算在区间 1 到 n 的所有整数中,数字 x(0 ≤ x ≤ 9)共出现了多少次?例如,在 1 到 11 中,即在 1、2、3、4、5、6、7、8、9、10、11 中,数字 1 出现了 4 次。 输入输出格式 输入格式: 输入文件名为 count.in。 输入共 1 行 阅读全文
posted @ 2016-04-02 17:31 Orion_7 阅读(396) 评论(0) 推荐(0) 编辑
摘要: 因为数据范围并不大,所以可以枚举。 枚举的方法是枚举二叉树,之后计算每棵树的答案。 枚举的时候,每次选择两个没有父节点的节点连接,n-1次之后即得一棵二叉树。 计算的时候,分别计算两棵子树的宽,再结合本节点天平的宽。 有一个小技巧,由于计算时子程序要返回两个值(最左长度和最右长度),不能直接写成返回 阅读全文
posted @ 2016-03-30 23:43 Orion_7 阅读(242) 评论(0) 推荐(0) 编辑
摘要: 1 /*UVa 11292 Dragon of Loowater*/ 2 #include 3 #include 4 #include 5 #include 6 using namespace std; 7 int n,m; 8 int main(){ 9 while(scanf("%d%d",&n,&m) && n!=0 && m!=0){ 10 in... 阅读全文
posted @ 2016-03-29 23:25 Orion_7 阅读(155) 评论(0) 推荐(0) 编辑
摘要: 然而等于是默了一遍标程 阅读全文
posted @ 2016-03-29 23:24 Orion_7 阅读(139) 评论(0) 推荐(0) 编辑