1. c:\windows\system32\config\SAM 存储本地用户账号 2. cmd -> set 可以查看很多信息,包括logon server 3. 创建一般服务账号的时候,要选择“密码永不过期” 4. cmd -> net user 5. 可以在Computer Manageme
来源:http://blog.163.com/sam_chen_cn/blog/static/121643873201162992241114/ CURL --- 命令行浏览器这东西现在已经是苹果机上内置的命令行工具之一了,可见其魅力之一斑1)二话不说,先从这里开始吧!curl http://www
分类:
Web程序 时间:
2016-03-02 17:56:49
阅读次数:
220
Longest Common Substring II Time Limit: 2000ms Memory Limit: 262144KB A string is finite sequence of characters over a non-empty finite set Σ. In this
分类:
其他好文 时间:
2016-02-29 10:39:33
阅读次数:
150
LCS - Longest Common Substring no tags A string is finite sequence of characters over a non-empty finite set Σ. In this problem, Σ is the set of lower
分类:
其他好文 时间:
2016-02-25 00:04:38
阅读次数:
183
1 struct SAM{ 2 int ch[maxn][26],fa[maxn],len[maxn],cnt,last; 3 void Init() 4 { 5 memset(ch,0,sizeof(ch)); 6 memset(fa,0,sizeof(fa)); 7 last=cnt=1; 8
分类:
其他好文 时间:
2016-02-22 20:54:34
阅读次数:
336
Problem Description Now you are back,and have a task to do:Given you a string s consist of lower-case English letters only,denote f(s) as the number o
分类:
其他好文 时间:
2016-02-19 20:32:48
阅读次数:
233
3926: [Zjoi20150]诸神眷顾的幻想乡 Time Limit: 10 Sec Memory Limit: 512 MBSubmit: 615 Solved: 369[Submit][Status][Discuss] Description 幽香是全幻想乡里最受人欢迎的萌妹子,这天,是幽香
分类:
其他好文 时间:
2016-02-19 18:42:53
阅读次数:
173
Description 对于一个给定长度为N的字符串,求它的第K小子串是什么。 Input 第一行是一个仅由小写英文字母构成的字符串S 第二行为两个整数T和K,T为0则表示不同位置的相同子串算作一个。T=1则表示不同位置的相同子串算作多个。K的意义如题所述。 Output 输出仅一行,为一个数字串,
分类:
其他好文 时间:
2016-02-19 14:15:22
阅读次数:
263
Description 给出几个由小写字母构成的单词,求它们最长的公共子串的长度。 任务: l 读入单词 l 计算最长公共子串的长度 l 输出结果 Input 文件的第一行是整数 n,1<=n<=5,表示单词的数量。接下来n行每行一个单词,只由小写字母组成,单词的长度至少为1,最大为2000。 Ou
分类:
其他好文 时间:
2016-02-19 12:32:42
阅读次数:
229
3160 最长公共子串 题目描述 Description 给出两个由小写字母组成的字符串,求它们的最长公共子串的长度。 输入描述 Input Description 读入两个字符串 输出描述 Output Description 输出最长公共子串的长度 样例输入 Sample Input yesho
分类:
其他好文 时间:
2016-02-18 21:17:04
阅读次数:
267