自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(56)
  • 收藏
  • 关注

原创 国王发金币

国王给骑士发金币,第一天一个,第二天和第三天每天两个,第四,五,六天每天三个......连续n天收到n个金币之后,会连续n+1天收到n+1个金币......编写一个程序,输入天数,输出骑士获得的总金币数。#include <iostream>using namespace std;int main(){ int n,sum=0,t=1,s=1; //sum:总金币数;t:获得相同金币的天数;s:这天获得的金币数 cin>>n; f...

2022-01-17 16:45:34 1704

原创 c++基本框架及知识

1.C++基本框架#include<iostream>using namespace std;int main(){//代码;return 0;}2.cout<<x<<endl; //输出流,换行 cin>>x; //输入流3. // : 单行注释 /*........*/ : 多行注释4. 两个整数相除,结果是整数;%两侧都是整数5. #define PI 3.14 【符号常量声明】...

2022-01-14 16:29:21 1896

原创 统计难题【 HDU - 1251 】

Ignatius最近遇到一个难题,老师交给他很多单词(只有小写字母组成,不会有重复的单词出现),现在老师要他统计出以某个字符串为前缀的单词数量(单词本身也是自己的前缀).Input输入数据的第一部分是一张单词表,每行一个单词,单词的长度不超过10,它们代表的是老师交给Ignatius统计的单词,一个空行代表单词表的结束.第二部分是一连串的提问,每行一个提问,每个提问都是一个字符串.注意:...

2018-09-02 21:29:21 454

原创 Line 【CodeForces - 7C 】

A line on the plane is described by an equation Ax + By + C = 0. You are to find any point on this line, whose coordinates are integer numbers from  - 5·1018 to 5·1018 inclusive, or to find out that s...

2018-09-02 21:07:10 276

原创 FatMouse and Cheese 【HDU - 1078 】

FatMouse has stored some cheese in a city. The city can be considered as a square grid of dimension n: each grid location is labelled (p,q) where 0 &lt;= p &lt; n and 0 &lt;= q &lt; n. At each grid lo...

2018-09-02 21:00:54 242

原创 整数划分 【51Nod - 1201 】

将N分为若干个不同整数的和,有多少种不同的划分方式,例如:n = 6,{6} {1,5} {2,4} {1,2,3},共4种。由于数据较大,输出Mod 10^9 + 7的结果即可。Input输入1个数N(1 &lt;= N &lt;= 50000)。Output输出划分的数量Mod 10^9 + 7。Sample Input6Sample Output4题意...

2018-09-02 20:48:01 202

原创 超级密码 【HDU - 1226 】

Ignatius花了一个星期的时间终于找到了传说中的宝藏,宝藏被放在一个房间里,房间的门用密码锁起来了,在门旁边的墙上有一些关于密码的提示信息:密码是一个C进制的数,并且只能由给定的M个数字构成,同时密码是一个给定十进制整数N(0&lt;=N&lt;=5000)的正整数倍(如果存在多个满足条件的数,那么最小的那个就是密码),如果这样的密码存在,那么当你输入它以后门将打开,如果不存在这样的密码.....

2018-08-26 19:28:12 232

原创 Anniversary party【 POJ - 2342 】

There is going to be a party to celebrate the 80-th Anniversary of the Ural State University. The University has a hierarchical structure of employees. It means that the supervisor relation forms a tr...

2018-08-26 19:14:57 155

原创 S-Trees 【UVA - 712】

A Strange Tree (S-tree) over the variable set Xn = {x1, x2, . . . , xn} is a binary tree representing a Boolean function f : {0, 1} n → {0, 1}. Each path of the S-tree begins at the root node and cons...

2018-08-26 19:08:27 211

原创 度度熊学队列 【HDU - 6375】

度度熊正在学习双端队列,他对其翻转和合并产生了很大的兴趣。初始时有 NN 个空的双端队列(编号为 11 到 NN ),你要支持度度熊的 QQ 次操作。①11 uu ww valval 在编号为 uu 的队列里加入一个权值为 valval 的元素。(w=0w=0 表示加在最前面,w=1w=1 表示加在最后面)。②22 uu ww 询问编号为 uu 的队列里的某个元素并删除它。( w=0w=0 ...

2018-08-26 18:37:42 185

原创 The Falling Leaves 【UVA - 699 】

Each year, fall in the North Central region is accompanied by the brilliant colors of the leaves on the trees, followed quickly by the falling leaves accumulating under the trees. If the same thing ha...

2018-08-26 18:29:52 148

原创 Tree【 UVA - 548 】

You are to determine the value of the leaf node in a given binary tree that is the terminal node of a path of least value from the root of the binary tree to any leaf. The value of a path is the sum o...

2018-08-26 18:18:40 204

原创 Not so Mobile[ UVA - 839]

Before being an ubiquous communications gadget, a mobile was just a structure made of strings and wires suspending colourfull things. This kind of mobile is usually found hanging over cradles of small...

2018-08-26 18:12:31 168

原创 The order of a Tree 【HDU - 3999 】

As we know,the shape of a binary search tree is greatly related to the order of keys we insert. To be precisely:1.  insert a key k to a empty tree, then the tree become a tree withonly one node;2. ...

2018-08-26 18:04:45 226

原创 Trees on the level【 HDU - 1622 】

Trees are fundamental in many branches of computer science. Current state-of-the art parallel computers such as Thinking Machines' CM-5 are based on fat trees. Quad- and octal-trees are fundamental to...

2018-08-26 17:57:08 244

原创 Nikita and string

One day Nikita found the string containing letters "a" and "b" only.Nikita thinks that string is beautiful if it can be cut into 3 strings (possibly empty) without changing the order of the letters,...

2018-08-25 16:41:56 328

原创 二叉搜索树【 HDU - 3791 】

判断两序列是否为同一二叉搜索树序列Input开始一个数n,(1&lt;=n&lt;=20) 表示有n个需要判断,n= 0 的时候输入结束。接下去一行是一个序列,序列长度小于10,包含(0~9)的数字,没有重复数字,根据这个序列可以构造出一颗二叉搜索树。接下去的n行有n个序列,每个序列格式跟第一个序列一样,请判断这两个序列是否能组成同一颗二叉搜索树。Output如果序列相同则输出...

2018-08-25 10:23:25 182

原创 Functions again【 CodeForces - 789C】

Something happened in Uzhlyandia again... There are riots on the streets... Famous Uzhlyandian superheroes Shean the Sheep and Stas the Giraffe were called in order to save the situation. Upon the arr...

2018-08-21 22:33:05 178

原创 Mr. Kitayuta's Colorful Graph 【CodeForces - 505B 】

Mr. Kitayuta has just bought an undirected graph consisting of n vertices and m edges. The vertices of the graph are numbered from 1 to n. Each edge, namely edge i, has a color ci, connecting vertex a...

2018-08-21 16:23:35 187

原创 Tree Recovery 【POJ - 2255】

Little Valentine liked playing with binary trees very much. Her favorite game was constructing randomly looking binary trees with capital letters in the nodes.This is an example of one of her creatio...

2018-08-21 15:42:26 203

原创 Minimum Transport Cost 【HDU - 1385】

These are N cities in Spring country. Between each pair of cities there may be one transportation track or none. Now there is some cargo that should be delivered from one city to another. The transpor...

2018-08-16 21:44:14 187

原创 Drainage Ditches 【HDU - 1532】

Every time it rains on Farmer John's fields, a pond forms over Bessie's favorite clover patch. This means that the clover is covered by water for awhile and takes quite a long time to regrow. Thus, Fa...

2018-08-16 21:11:44 263

原创 Ice_cream's world I 【HDU - 2120 】

ice_cream's world is a rich country, it has many fertile lands. Today, the queen of ice_cream wants award land to diligent ACMers. So there are some watchtowers are set up, and wall between watchtower...

2018-08-16 14:05:57 191

原创 最短路径问题【 HDU - 3790 】

给你n个点,m条无向边,每条边都有长度d和花费p,给你起点s终点t,要求输出起点到终点的最短距离及其花费,如果最短距离有多条路线,则输出花费最少的。Input输入n,m,点的编号是1~n,然后是m行,每行4个数 a,b,d,p,表示a和b之间有一条边,且其长度为d,花费为p。最后一行是两个数 s,t;起点s,终点。n和m为0时输入结束。(1&lt;n&lt;=1000, 0&lt;m&l...

2018-08-14 21:53:08 186

原创 Play on Words 【POJ - 1386】

Some of the secret doors contain a very interesting word puzzle. The team of archaeologists has to solve it to open that doors. Because there is no other way to open the doors, the puzzle is very impo...

2018-08-14 21:45:51 162

原创 确定比赛名次【 HDU - 1285】

有N个比赛队(1&lt;=N&lt;=500),编号依次为1,2,3,。。。。,N进行比赛,比赛结束后,裁判委员会要将所有参赛队伍从前往后依次排名,但现在裁判委员会不能直接获得每个队的比赛成绩,只知道每场比赛的结果,即P1赢P2,用P1,P2表示,排名时P1在P2之前。现在请你编程序确定排名。Input输入有若干组,每组中的第一行为二个数N(1&lt;=N&lt;=500),M;其中N表示...

2018-08-14 21:23:59 157

原创 六度分离 【HDU - 1869】

1967年,美国著名的社会学家斯坦利·米尔格兰姆提出了一个名为“小世界现象(small world phenomenon)”的著名假说,大意是说,任何2个素不相识的人中间最多只隔着6个人,即只用6个人就可以将他们联系在一起,因此他的理论也被称为“六度分离”理论(six degrees of separation)。虽然米尔格兰姆的理论屡屡应验,一直也有很多社会学家对其兴趣浓厚,但是在30多年的时间...

2018-08-14 21:18:01 153

原创 食物链 [ POJ - 1182 ]

动物王国中有三类动物A,B,C,这三类动物的食物链构成了有趣的环形。A吃B, B吃C,C吃A。现有N个动物,以1-N编号。每个动物都是A,B,C中的一种,但是我们并不知道它到底是哪一种。有人用两种说法对这N个动物所构成的食物链关系进行描述:第一种说法是"1 X Y",表示X和Y是同类。第二种说法是"2 X Y",表示X吃Y。此人对N个动物,用上述两种说法,一句接一句地说出K句话,这K句话...

2018-08-14 20:35:40 111

原创 数组的最大代价 【51Nod - 1270 】

数组A包含N个元素A1, A2......AN。数组B包含N个元素B1, B2......BN。并且数组A中的每一个元素Ai,都满足1 &lt;= Ai &lt;= Bi。数组A的代价定义如下:  (公式表示所有两个相邻元素的差的绝对值之和)给出数组B,计算可能的最大代价S。Input第1行:1个数N,表示数组的长度(1 &lt;= N &lt;= 50000)。第2...

2018-08-09 19:08:25 154

原创 Is It A Tree?【 POJ - 1308】

A tree is a well-known data structure that is either empty (null, void, nothing) or is a set of one or more nodes connected by directed edges between nodes satisfying the following properties.There i...

2018-08-09 18:52:44 135

原创 小希的迷宫 【HDU - 1272】

上次Gardon的迷宫城堡小希玩了很久(见Problem B),现在她也想设计一个迷宫让Gardon来走。但是她设计迷宫的思路不一样,首先她认为所有的通道都应该是双向连通的,就是说如果有一个通道连通了房间A和B,那么既可以通过它从房间A走到房间B,也可以通过它从房间B走到房间A,为了提高难度,小希希望任意两个房间有且仅有一条路径可以相通(除非走了回头路)。小希现在把她的设计图给你,让你帮忙判断她的...

2018-08-09 18:24:34 211

原创 Cheapest Palindrome【 POJ - 3280 】

Keeping track of all the cows can be a tricky task so Farmer John has installed a system to automate it. He has installed on each cow an electronic ID tag that the system will read as the cows pass by...

2018-08-05 19:36:53 135

原创 FatMouse's Speed 【HDU - 1160】

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 possible into a sequence...

2018-08-05 19:11:38 311

原创 Greatest Common Increasing Subsequence【 HDU - 1423 】

This is a problem from ZOJ 2432.To make it easyer,you just need output the length of the subsequence.InputEach sequence is described with M - its length (1 &lt;= M &lt;= 500) and M integer numbers...

2018-08-05 18:54:52 164

原创 Largest Rectangle in a Histogram 【HDU - 1506 】

A histogram is a polygon composed of a sequence of rectangles aligned at a common base line. The rectangles have equal widths but may have different heights. For example, the figure on the left shows ...

2018-08-05 18:47:09 180

原创 搬寝室 [HDU - 1421]

搬寝室是很累的,xhd深有体会.时间追述2006年7月9号,那天xhd迫于无奈要从27号楼搬到3号楼,因为10号要封楼了.看着寝室里的n件物品,xhd开始发呆,因为n是一个小于2000的整数,实在是太多了,于是xhd决定随便搬2*k件过去就行了.但还是会很累,因为2*k也不小是一个不大于n的整数.幸运的是xhd根据多年的搬东西的经验发现每搬一次的疲劳度是和左右手的物品的重量差的平方成正比(这里补充...

2018-08-05 18:17:45 144

原创 饭卡 [ HDU - 2546 ]

电子科大本部食堂的饭卡有一种很诡异的设计,即在购买之前判断余额。如果购买一个商品之前,卡上的剩余金额大于或等于5元,就一定可以购买成功(即使购买后卡上余额为负),否则无法购买(即使金额足够)。所以大家都希望尽量使卡上的余额最少。某天,食堂中有n种菜出售,每种菜可购买一次。已知每种菜的价格以及卡上的余额,问最少可使卡上的余额为多少。Input多组数据。对于每组数据:第一行为正整数n,表示...

2018-08-05 18:12:35 169

原创 Two Strings Swaps 【CodeForces - 1006D】

You are given two strings aa and bb consisting of lowercase English letters, both of length nn. The characters of both strings have indices from 11 to nn, inclusive.You are allowed to do the followi...

2018-08-02 18:51:01 249

原创 Bridging signals 【POJ - 1631】

'Oh no, they've done it again', cries the chief designer at the Waferland chip factory. Once more the routing designers have screwed up completely, making the signals on the chip connecting the ports ...

2018-08-02 17:58:41 172

原创 Palindrome【 POJ - 1159】

A palindrome is a symmetrical string, that is, a string read identically from left to right as well as from right to left. You are to write a program which, given a string, determines the minimal numb...

2018-08-02 17:32:54 122

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除