问题描述:Time Limit: 10000msCase Time Limit: 1000msMemory Limit: 256MBDescriptionConsider a string set that each of them consists of {0, 1} only. All stri...
分类:
其他好文 时间:
2014-06-25 21:54:20
阅读次数:
258
UVA 10539 - Almost Prime Numbers
题目链接
题意:给定一个区间,求这个区间中的Almost prime number,Almost prime number的定义为:只能整除一个素数。
思路:既然是只能整除一个素数,那么这些数肯定为素数的x次方(x > 1),那么只要先打出素数表,然后在素数表上暴力找一遍就可以了,因为素数表只要找到sqrt(Max...
分类:
其他好文 时间:
2014-06-25 20:10:16
阅读次数:
181
Peterson's algorithm (AKA Peterson's solution) is a concurrent
programming algorithm for mutual
exclusion that allows two processes to share a single-use resource without conflict, using only shar...
分类:
编程语言 时间:
2014-06-25 19:38:19
阅读次数:
748
团队建设总结fx O622
大的title 2
建设团队文化 2
办公环境(3s+树+湖)
3
每人一个办公室 3
弹性工作制 3
重大的决定公投体制 3
每年一个kid经验日 3
做自己想到做的事.. 3
One2one 3
灵活的规定 3
公共的gucywe 4
感谢队友的工作 4
欣赏队友的工作,不要挑刺,在完美的工作也有缺点..only find ...
分类:
其他好文 时间:
2014-06-24 23:55:50
阅读次数:
523
我在刚开始安装完ecshop之后就如首页就开始报如下的错误:
Strict Standards: Only variables should be passed by reference in
C:\diyServ\apps\EcShop\includes\cls_template.php on line
422
在网上可以搜到这个解决办法就是:由于在php5.3之后php函数返回的是一...
分类:
其他好文 时间:
2014-06-24 22:23:33
阅读次数:
230
Given a string, determine if it is a palindrome, considering only alphanumeric
characters and ignoring cases.
For example,
"A man, a plan, a canal: Panama" is a palindrome.
"race a car" i...
分类:
其他好文 时间:
2014-06-24 18:16:02
阅读次数:
147
10140 - Prime Distance
题目链接
题意:求[l,r]区间内最近和最远的素数对。
思路:素数打表,打到sqrt(Max)即可,然后利用大的表去筛素数,由于[l, r]最多100W,所以可以去遍历一遍,找出答案。注意1的情况,一开始没判断1,结果WA了
代码:
#include
#include
#include
using namespace...
分类:
其他好文 时间:
2014-06-24 17:20:30
阅读次数:
314
【题目】
Given a string, determine if it is a palindrome, considering only alphanumeric characters and ignoring cases.
For example,
"A man, a plan, a canal: Panama" is a palindrome.
"race a car" is not a palindrome.
Note:
Have you consider that the string m...
分类:
其他好文 时间:
2014-06-24 15:35:07
阅读次数:
150
首先:虚拟机是用VMware软件的网桥方式创建,至于该软件的3种连接方式有NAT,网桥方式,host-only方式,在网址1有详细介绍。网址1:http://blog.csdn.net/shuxiao9058/article/details/7051463第一:目标搭建如下图的局域网连接互联网:图P...
分类:
其他好文 时间:
2014-06-24 14:32:17
阅读次数:
245
废话不多讲,先上笑话,然后再,。看懂这个的说明你的节操已经不再了。晚饭后去理发店理发。。。割了吧。。。老板问我怎么剪,我悠悠的来一句往帅了剪。。。高潮往往令人想不到。。。。旁边一在焗油烫头发的大妈说到 别这样为难老板,人家赚点钱不容易。。。首先如果你是高手那么请出门右转,如果你是菜鸟那么恭喜你,go...
分类:
编程语言 时间:
2014-06-24 12:05:55
阅读次数:
218