题目链接:http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemCode=3321CircleTime Limit:1 Second Memory Limit:32768 KBYour task is so easy. I will give...
分类:
其他好文 时间:
2014-07-08 23:04:16
阅读次数:
264
Cake
Time Limit: 1 Second
Memory Limit: 32768 KB
You want to hold a party. Here's a polygon-shaped cake on the table. You'd like to cut the cake into several triangle-shaped parts for th...
分类:
其他好文 时间:
2014-07-08 15:36:15
阅读次数:
298
HDU 2516 取石子游戏 (博弈论)
解题思路:
这题没法用sg直接求了,数据量太大了,而且sg会受上次的影响,所以不一定。
因此,只能打表找规律,找到规律发现如果满足斐波那契数列 f[n]=f[n-1]+f[n-2] 的数列,Second Win 否则 ,First Win...
分类:
其他好文 时间:
2014-07-06 12:42:13
阅读次数:
213
One Person Game
Time Limit: 1 Second
Memory Limit: 32768 KB Special Judge
There is a very simple and interesting one-person game. You have 3 dice, namely
Die1, Die2 and Die3. Die1...
分类:
其他好文 时间:
2014-07-06 12:04:41
阅读次数:
167
1422 - Halloween Costumes
PDF (English)
Statistics
Forum
Time Limit: 2 second(s)
Memory Limit: 32 MB
Gappu has a very busy weekend ahead of him. Because, next...
分类:
其他好文 时间:
2014-07-03 16:31:28
阅读次数:
198
书里面关于分类的判断有些麻烦,通过某一位为0为1来对数组元素进行分类。假如第3位为1,那么也就是元素x & 8 等于或不等于0,所以没必要非的用第几位去判断。
def once(array):
reOR = 0
for x in array:
reOR ^= x
bit1 = firstBit1(reOR)
first = 0
second = 0
for x in a...
分类:
其他好文 时间:
2014-07-03 13:54:06
阅读次数:
182
按着书里面讲述的方法,根据某一位来将整个数组拆分成两个部分,取每一部分中出现一次的数。书中的处理略显复杂,这里简化下分类的方法。
def once(array):
reOR = 0
for x in array:
reOR ^= x
bit1 = firstBit1(reOR)
first = 0
second = 0
for x in array:
if x & ...
分类:
其他好文 时间:
2014-07-03 13:50:52
阅读次数:
181
吞吐率ab -n1000 -c 100 http://new.dangdang.com/测试结果重点关注:1个Requests per second,2个Time per request影响吞吐率的因素:并发策略、I/O模型、I/O性能、CPU核数、程序本身逻辑复杂度1、CPU并发计算系统负载:ca...
分类:
Web程序 时间:
2014-07-02 22:56:26
阅读次数:
208
1971. Graphics Settings
Time limit: 2.0 second
Memory limit: 64 MB
给定n个选项,m个操作,问the image generation speed=p/(W*H*∏ki(第i个选项开启))在哪个区间。
Input
第一行为 n (0 ≤ n ≤ 100 000). 接下来第i行分别有指令名 si, ...
分类:
其他好文 时间:
2014-07-02 08:16:27
阅读次数:
333
1.java 类与类关联(一对一 妻子对丈夫类)eg:定义两个类(丈夫类和妻子类) first:在丈夫类中关联妻子类: Wife wife; second:在另一个类的方法中调用丈夫类和妻子类的对象: Husband h = new Husband("小明",20); ...
分类:
编程语言 时间:
2014-07-01 16:33:07
阅读次数:
245