RescueTime Limit:2 Seconds Memory Limit:65536 KBAngel was caught by the MOLIGPY! He was put in prison by Moligpy. The prison is described as a N * M (...
分类:
其他好文 时间:
2014-10-15 19:06:41
阅读次数:
248
题目:There areNgas stations along a circular route, where the amount of gas at stationiisgas[i].You have a car with an unlimited gas tank and it costsco...
分类:
其他好文 时间:
2014-10-15 18:12:11
阅读次数:
218
题目描述 Description
给出一个英语句子,希望你把句子里的单词顺序都翻转过来...
分类:
其他好文 时间:
2014-10-15 17:15:51
阅读次数:
172
题目描述 Description
给出字符串a和字符串b,保证b是a的一个子串,请你输出b在a中第一次出现的位置。...
分类:
其他好文 时间:
2014-10-15 16:45:31
阅读次数:
146
题目出处:http://acm.hdu.edu.cn/showproblem.php?pid=5064题意:给定n个数,求满足以下两个条件的子序列的最大长度: (1)C1 2 #include 3 #include 4 using namespace std; 5 int n,M,num[3000....
分类:
其他好文 时间:
2014-10-15 00:10:09
阅读次数:
280
【题目】
Given an array with n objects colored red, white or blue, sort them so that objects of the same color are adjacent, with the colors in the order red, white and blue.
Here, we will use the int...
分类:
其他好文 时间:
2014-10-13 22:00:39
阅读次数:
179
【题目】
Given a binary tree, determine if it is height-balanced.
For this problem, a height-balanced binary tree is defined as a binary tree in which the depth of the two subtrees of every node never d...
分类:
其他好文 时间:
2014-10-12 22:29:28
阅读次数:
210
1153_马的周游问题题目链接:http://soj.me/1153题目大意:给定一个8×8棋盘,格子标号1到64,输入一个初始位置的标号,按照马走“日”字的方法,找一条能刚好走完整个棋盘的路径,每个格子恰好只访问过一次。思路:用深度优先搜索的方法可以解决问题。首先用二维数组表示整个棋盘,直接用bo...
分类:
其他好文 时间:
2014-10-12 19:47:38
阅读次数:
504
题目链接:http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemId=5373题目意思: 有两个class:A 和 B,Bob 在 Class A 里面。现在给出 Class A(n-1人) 和 Class B(m人) 所有人的分数,除了Bo...
分类:
其他好文 时间:
2014-10-12 18:24:58
阅读次数:
204
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=5062题目意思:给出 N,找出 1 ~ 10^N 中满足 Beautiful Palindrome Numbers (BPN)的数量有多少。 满足 BPN 的条件有两个:(1)回文串 (2)对称的部分从....
分类:
其他好文 时间:
2014-10-12 13:30:28
阅读次数:
185