Potted Flower
Time Limit: 2000MS
Memory Limit: 65536K
Total Submissions: 4186
Accepted: 1581
Description
The little cat takes over the management of a new park. There...
分类:
其他好文 时间:
2014-08-17 18:39:42
阅读次数:
350
今天举行了英语词汇发音交流会
一共有三个环节。第一个环节读单词我们组读的单词it、pen、do、stop、think、park、sink、wood,在这一个环节中我感受到了,什么是一个团队。对于我们这些读音存在大问题的,我们的团队,让我们优先选择把握大的单词,然后剩余的归他们,在这个过程中大家默契配合,大家相互听对方的发音,大家尽自己最大的努力把自己读的那个单词,尽可能的读到最好。...
分类:
其他好文 时间:
2014-08-17 17:07:22
阅读次数:
216
hdu4607:http://acm.hdu.edu.cn/showproblem.php?pid=4607题意:给你一棵树,树上每条边的权值是1,然后然你选择m个点,求遍历m个点的最小花费。题解:这一题要用到树的性质。首先可以想到的是第一次肯定要选择一条最长的路径,也就是树的直径。至于其余的点怎么...
分类:
其他好文 时间:
2014-08-16 09:39:40
阅读次数:
297
对于一棵树,求遍历k个节点的最少步数。先求出直径,若未超过直径,则就是k-1,否则就是 直径 + 2 * (k - 直径 - 1)。#include #include #include #include using namespace std;#define maxn 100100#define m...
分类:
其他好文 时间:
2014-08-14 00:54:57
阅读次数:
483
Park Visit
Time Limit: 6000/3000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 2321 Accepted Submission(s): 1029
Problem Description
Claire and her ...
分类:
其他好文 时间:
2014-08-10 13:01:00
阅读次数:
294
在整理Java LockSupport.park()的东东,看到了个"Spurious wakeup",重新梳理下。
首先来个《UNIX环境高级编程》里的例子:
[cpp] view
plaincopy
#include
struct msg {
struct msg *m_next;
/* ... mo...
分类:
其他好文 时间:
2014-08-05 15:53:01
阅读次数:
369
LockSupport类是Java6(JSR166-JUC)引入的一个类,提供了基本的线程同步原语。LockSupport实际上是调用了Unsafe类里的函数,归结到Unsafe里,只有两个函数:
?
1
2
public
native
void
unpark(Thread jthread);
public...
分类:
编程语言 时间:
2014-08-05 15:52:40
阅读次数:
341
public abstract class Vehicle { protected ParkingSpace pSpace; public abstract boolean park(ParkingLot pLot); public boolean unpark(ParkingLot p...
分类:
其他好文 时间:
2014-08-04 06:13:26
阅读次数:
226
Description
Each of the M lanes of the Park of Polytechnic University of Bucharest connects two of the N crossroads of the park (labeled from 1 to N). There is no pair of crossroads connected by mo...
分类:
其他好文 时间:
2014-08-02 23:27:14
阅读次数:
327