2016暑假多校联合 Windows 10(HDU:5802) Problem Description Long long ago, there was an old monk living on the top of a mountain. Recently, our old monk found ...
2016暑假多校联合 Substring Problem Description ?? is practicing his program skill, and now he is given a string, he has to calculate the total number of its ...
分类:
编程语言 时间:
2016-08-06 12:41:37
阅读次数:
197
2016暑假多校联合 To My Girlfriend Problem Description Dear GuoI never forget the moment I met with you.You carefully asked me: "I have a very difficult prob ...
分类:
其他好文 时间:
2016-08-05 13:38:24
阅读次数:
139
A Boring Question Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/65536 K (Java/Others)Total Submission(s): 156 Accepted Submission(s): 72 ...
分类:
其他好文 时间:
2016-08-04 21:08:38
阅读次数:
211
A Simple Nim Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/65536 K (Java/Others)Total Submission(s): 79 Accepted Submission(s): 48 Proble ...
分类:
其他好文 时间:
2016-08-04 21:05:44
阅读次数:
400
2016暑假多校联合 Another Meaning Problem Description As is known to all, in many cases, a word has two meanings. Such as “hehe”, which not only means “hehe” ...
分类:
其他好文 时间:
2016-08-02 13:39:18
阅读次数:
224
题目:http://acm.hdu.edu.cn/showproblem.php?pid=5411
题意:按题目转化的意思是,给定N和M,再给出一些边(u,v)表示u和v是连通的,问走0,1,2.....M步的方案数。
分析:这题和 hdu5318 The Goddess Of The Moon差不多,就是多了一个等比数列求和。
代码:
#include
#include
#inclu...
分类:
其他好文 时间:
2015-08-21 17:14:53
阅读次数:
143
题目:http://acm.hdu.edu.cn/showproblem.php?pid=5416
题意:定给一棵树,有N-1条边,每条边有一个权值,查询两个点u到v的异或和为s的路的条数(u可以等于v)。
分析:预处理出所有的顶点到root的异或和,然后对于每次查询枚举起点就行了。
代码:
#include
#include
#include
#include
using nam...
分类:
其他好文 时间:
2015-08-21 15:49:15
阅读次数:
162
题目:http://acm.hdu.edu.cn/showproblem.php?pid=5414
题意:给定字符串s和t,可以在s里面选一个字符c,然后任选一个字符d(d!=c)将d插入到c的后面,问能不能将s变为t。
分析:先考虑可以插的字符(串)的情况,若在字符串"sd"的字符s后面插字符串p(|p|>=1),只要p[0]!=‘s’就行,比如p="oola",第一个o插在's'后面,第二...
分类:
其他好文 时间:
2015-08-20 20:53:40
阅读次数:
141
【题目链接】click here~~
【题目大意】:走方格,从【1,1】到【n,m】,求中间过程得到的数字和最大,并且输出路径
【思路】:
/*
如果n和m里面有一个是奇数那么全部走遍就好了。
否则要找一个最小的点不要,这个点的坐标要满足x+y是奇数
如果不是的话,舍弃该点一定会导致另外一个点也走不到。
然后找到这个点,暴力输出路径即可。
*/
代码:
#include
usin...
分类:
其他好文 时间:
2015-08-20 13:16:25
阅读次数:
165