11488 - Hyper Prefix Sets
Time limit: 2.000 seconds
#include
#include
#include
#include
#include
#include
#include
using namespace std;
const int maxn = 5000000;
vector vs;
int cnt,ans...
分类:
其他好文 时间:
2014-06-22 16:38:22
阅读次数:
199
rt,直接猜1
First Digit
Time Limit: 2 Seconds Memory Limit: 65536 KB Special Judge
Benford's Law, also called the First-Digit Law, refers to the frequency distribution of digits i...
分类:
其他好文 时间:
2014-06-20 13:04:39
阅读次数:
277
程序代码:
#include
using namespace std;
class Time
{
public:
Time(int=0,int=0,int=0);
void show_time( ); //根据is_24和from0,输出适合形式-20:23:5/8:23:5 pm/08:23:05 pm
void add_seconds(int); //增加n秒钟
void ad...
分类:
其他好文 时间:
2014-06-20 09:53:39
阅读次数:
206
产生这个问题的原因的是将项目部署到tomcat的时间超过了45秒,当项目比较大,用的框架比较复杂常会出现这个问题。
解决方法很简单,找到下面这个路径中 workspace\.metadata\.plugins\org.eclipse.wst.server.core\servers.xml的server.xml文件
将start-timeout设置为100或者更长即可~...
分类:
其他好文 时间:
2014-06-14 13:21:11
阅读次数:
351
據說小学生几秒就做出;高中生几分钟;大学生半小时以上;博士可能要一辈子......What
takes an elementary school student just seconds to do; takes a high school
student several minutes; take...
分类:
其他好文 时间:
2014-06-08 20:10:07
阅读次数:
222
给n个人的年龄大小关系,问最少分几组使每个组里面人的年龄不能直接或间接的比较。
每个联通块里的人都得分到不同的组,缩点后找最长的链即答案
tarjian缩点+dp找最长路
Grouping
Time Limit: 2 Seconds Memory Limit: 65536 KB
Suppose there are N people in ZJU, who...
分类:
其他好文 时间:
2014-06-08 09:44:30
阅读次数:
321
日常工作中,对于MySQL主从复制检查,一方面我们要保证复制的整体结构是否正常,另一方面需要检查主从数据是否保持一致。对于前者我们可以通过监控复制线程是否工作正常以及主从延时是否在容忍范围内,对于后者则可以通过分别校验主从表中数据的md5码是否一致,来保证数据一致..
分类:
其他好文 时间:
2014-06-08 02:30:17
阅读次数:
312
离散化+暴力
Consecutive Blocks
Time Limit: 2 Seconds Memory Limit: 65536 KB
There are N (1 ≤ N ≤ 105) colored blocks (numbered 1 to N from left to right) which are lined up in a row. An...
分类:
其他好文 时间:
2014-06-07 13:08:07
阅读次数:
193
并查集,
删除节点操作,可以用新建节点代替
维护每个点到跟节点的距离
Gears
Time Limit: 2 Seconds Memory Limit: 65536 KB
Bob has N (1 ≤ N ≤ 2*105) gears (numbered from 1 to N). Each gear can rotate clockwise or co...
分类:
其他好文 时间:
2014-06-07 11:33:37
阅读次数:
227
在VirtualBox中,有时候打开虚拟机,会出现Waiting for 60 seconds
more for network configuration这种情况,从而使得开机变得很慢。通过以下操作,可以让虚拟机开机很快,并且开机后不用再执行sudo
dhclient eth0这种操作获取IP了。...
分类:
其他好文 时间:
2014-06-05 14:07:57
阅读次数:
300