hdu 4607 Park Visit(树的直径)—— black 的专栏 —— waShaXiu...
分类:
其他好文 时间:
2015-01-23 14:46:29
阅读次数:
148
根据前面的线程阻塞与唤醒小节知道,目前在Java语言层面能实现阻塞唤醒的方式一共有三种:suspend与resume组合、wait与notify组合、park与unpark组合。其中suspend与resume因为存在无法解决的竟态问题而被Java废弃,同样,wait与notify也存在竟态条件,wait必须在notify之前执行,假如一个线程先执行notify再执行wait将可能导致一个线程永远...
分类:
编程语言 时间:
2014-12-13 21:52:10
阅读次数:
439
超水的动态规划。最后要对概率求Sigma。 1 #include 2 #include 3 #include 4 5 #define MAXN 61 6 #define MAXK 11 7 8 double dp[MAXK][MAXN]; 9 double a[7];10 int b[10...
分类:
其他好文 时间:
2014-11-25 00:12:40
阅读次数:
276
开始套题训练,第一套ASC题目,记住不放过每一题,多独立思考。Problem A ZOJ 2313 Chinese Girls' Amusement循环节题意:给定n,为圆环长度,求k k+1->2*k+1,直到遇到一个已经走过的点结束,要求最终把所有点访问一遍,最后回到1,使得k尽量大。代码:Pr...
分类:
其他好文 时间:
2014-11-05 00:06:39
阅读次数:
374
HDU 5050 -Chinese Girls' Amusement( JAVA or 高精度 )题意不用再解释做法是求两个二进制数的最大公约数字然后以二进制输出import java.io.*;import java.math.BigInteger;import java.util.*;publi...
分类:
编程语言 时间:
2014-10-02 18:43:23
阅读次数:
275
在工作中,我也逐渐了解到park,unpark,ord对于二进制字节处理的强大。 下面我逐一介绍它们。
park,unpark,ord这3个函数,在我们工作中,用到它们的估计不多。 我在最近一个工作中,因为通讯需要用到二进制流,然后接口用php接收。当时在处理时候,查阅不少资料。因为它...
分类:
Web程序 时间:
2014-09-24 22:38:17
阅读次数:
260
Nowadays it is becoming increasingly difficult to park a car in cities successfully. Let's imagine a segment of a street as long as L meters along which
a parking lot is located. Drivers should park...
分类:
其他好文 时间:
2014-09-06 02:16:42
阅读次数:
286
题目链接:http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemId=1313题目意思:有 N 个人(编号依次为1~N)围成一个圆圈,要求求出最大的 K (1 ≤ K≤ N/2),表示从编号为1的人开始,将球传递给他后一个人数起的第K个人,第...
分类:
其他好文 时间:
2014-09-03 22:32:37
阅读次数:
269
/* 实际上就是求一个k,满足kusing namespace std;string s;void div2() { string t; int l = s.size() - 1, tem = s[0] - '0'; if (tem > 1) t += '0' + tem / 2; te...
分类:
其他好文 时间:
2014-09-02 00:01:23
阅读次数:
220
Description
Nowadays it is becoming increasingly difficult to park a car in cities successfully. Let's imagine a segment of a street as long as
L meters along which a parking lot is located. Drive...
分类:
其他好文 时间:
2014-08-23 17:48:11
阅读次数:
249