1004. I Conduit!
Constraints
Time Limit: 3 secs, Memory Limit: 32 MB
Description
Irv Kenneth Diggit works for a company that excavates trenches, digs holes and generally tears up people'...
分类:
其他好文 时间:
2015-05-27 10:18:18
阅读次数:
181
1028. Hanoi Tower Sequence
Constraints
Time Limit: 1 secs, Memory Limit: 32 MB
Description
Hanoi Tower is a famous game invented by the French mathematician Edourard Lucas in 1883. W...
分类:
其他好文 时间:
2015-05-26 09:21:34
阅读次数:
128
Sicily 14515. Cookie Selection题目思路用两个堆来放全部数就好了;
每个堆放一半;
题目说得这么长几个意思- -。代码#include
#include
#include
#include
using namespace std;int main() { priority_queue...
分类:
其他好文 时间:
2015-05-26 09:15:21
阅读次数:
127
Sicily 14513. Aaah!题目思路这玩意还有什么思路。代码#include int main() { int d = 0, j = 0;
char c; while (~scanf("%c", &c))
if (c == '\n') {
while (~scanf("%c", &c) && c != '\n')...
分类:
其他好文 时间:
2015-05-21 09:08:27
阅读次数:
102
1011. Lenny's Lucky Lotto
Time Limit: 1sec Memory Limit:32MB
Description
Lenny likes to play the game of lotto. In the lotto game, he picks a list of N u...
分类:
其他好文 时间:
2015-05-19 14:51:52
阅读次数:
129
1119. Factstone Benchmark
Time Limit: 1sec Memory Limit:32MB
Description
Amtel has announced that it will re...
分类:
其他好文 时间:
2015-05-19 14:48:12
阅读次数:
131
14513. Aaah!
Time Limit: 1sec Memory Limit:256MB
Description
Jon Marius shouted too much at the recent Justin ...
分类:
其他好文 时间:
2015-05-19 14:44:55
阅读次数:
206
题目
思路
忽然发现小号里有这个代码,然后大号没有做。
思路忘记了,这代码应该是别人的,好像是书上的。
注释解释得也挺清楚了。代码#include
#include
#includeconst int maxn = 1000 + 10; //最大陨石数
const double eps = 1e-8; //控制精度
const doubl...
分类:
其他好文 时间:
2015-05-18 08:59:05
阅读次数:
107
题目
思路
题意是说将一组数排列成另外一组数,排序的方式是每次取出3个连续的的数字,然后abc可以cab,也就整体右移,超出位置的到最左边。
问能否排列成目标数组。
额,实在是不会做。在网上找到了好几个人的题解,稍加重写并比较性能好了。
好像和树状数组有关。
如代码区所示。代码
第一种方法,用时0.9s:
by Per Austrin//Sample solution for the...
分类:
其他好文 时间:
2015-05-18 08:57:48
阅读次数:
145
题目
思路
看了好久才懂题目的意思。
男男女女排队,给定一个Club中男女差值的最大值,问最多可以有多少人进入Club。
需要注意的是,我们可以让一个人插队到前一位。
那么当我们发现差值超过给定的最大值的时候,应该检查是否可以通过让下一个人先进(插队)来解决,如果仍然不能解决,那么之后的人都别进了。代码#include
#include int ma...
分类:
其他好文 时间:
2015-05-16 14:56:57
阅读次数:
150