上一页 1 ··· 207 208 209 210 211 212 213 214 215 ··· 249 下一页
摘要: http://acm.sdibt.edu.cn/JudgeOnline/problem.php?id=3230DescriptionSeveral days ago, a beast caught a beautiful princess and the princess was put in prison. To rescue the princess, a prince who wanted to marry the princess set out immediately. Yet, the beast set a maze. Only if the prince find out th 阅读全文
posted @ 2013-08-15 18:32 pangbangb 阅读(254) 评论(0) 推荐(0) 编辑
摘要: Problem Description A math instructor is too lazy to grade a question in the exam papers in which students are supposed to produce a complicated formula for the question asked. Students may write correct answers in different forms which makes grading very hard. So, the instructor needs help from com 阅读全文
posted @ 2013-08-15 18:30 pangbangb 阅读(296) 评论(0) 推荐(0) 编辑
摘要: http://www.zuimoban.com/free/1094.html 阅读全文
posted @ 2013-08-15 18:27 pangbangb 阅读(257) 评论(0) 推荐(0) 编辑
摘要: DescriptionIn ACM/ICPC on-site contests ,3 students share 1 computer,so you can print your source code any time. Here you need to write a contest print server to handle all the requests.InputIn the first line there is an integer T(T#include #include using namespace std;struct node{ char name[30];... 阅读全文
posted @ 2013-08-15 18:25 pangbangb 阅读(187) 评论(0) 推荐(0) 编辑
摘要: Problem Description 饱尝情感苦恼的小Q本打算隐居一段时间,但仅仅在3月25号一天没有出现,就有很多朋友想念他,所以,他今天决定再出来一次,正式和大家做个告别。 小Q近来睡眠情况很差——晚上睡不着,早上又起不来!以前总是全勤的他这个月甚至迟到了好几次,虽然主管没说什么,但是他自己清楚此事的严重性。 爱情没有了,小Q不想再失去面包,于是他决定买个闹钟,为求质量可靠,特意挑了个最贵的原装进口货!但是,正所谓屋漏偏逢连夜雨、人倒霉的时候喝凉水都塞牙,小Q新买的这个进口闹钟竟然每分钟总是比正确时间慢那么几秒! 可怜的小Q愤愤然道:“真是一个大笨钟!” 但是为了充分... 阅读全文
posted @ 2013-08-15 18:22 pangbangb 阅读(207) 评论(0) 推荐(0) 编辑
摘要: 内容提要:1. 掌握用户的 增/删/改 命令2. 掌握组的 增/删/改 命令 组管理 1)groupadd groupadd 用于添加组账号。格式如下: groupadd [-g GID] GROUP 其中: GROUP:是要添加的组名 -g:用于指定 GID,默认为使用当前最大的 GID 加1 举例: 添加一个新组 leader # groupadd leader # grep leader /etc/group leader:x:504: # grep leader /etc/gshadow leader:!:: 2)... 阅读全文
posted @ 2013-08-15 18:20 pangbangb 阅读(391) 评论(0) 推荐(0) 编辑
摘要: 摘要: 估算、计划、计划跟踪是项目管理的主要工作,难度之高超乎你想象!光靠学习项目管理理论难以管好项目,而往往真能管好项目的都是那些在具体项目中滚打出来的实干人士。本文将会让你全面学习项目估算、计划、计划跟踪的知识,体验实际项目管理的难度,学到提高项目管理水平的一些方法。 本文将会分7篇为你分享: 1.从建筑工程说起 2.估算要估啥? 3.估算如何做出来? 4.计划有什么内容? 5.计划是如何做出来的? 6.如何跟踪计划? 7.优秀项目经理是怎样炼成的?从建筑工程说起 大家都喜欢用建筑工程与软件工程做比较,但我们常常所说的建筑工程只是指建筑施工部分,而不是一个完整的建设项目。我们常常将施工.. 阅读全文
posted @ 2013-08-15 18:17 pangbangb 阅读(192) 评论(0) 推荐(0) 编辑
摘要: #include #include #include #include using namespace std;const int INF = 0x7fffffff;const int maxn = 1100;struct Edge { int from, to, dist;};vector edges;vector G[maxn];//类似邻接表,保存着边的编号。void init() { for(int i = 0; i %d = %d\n", e.from, e.to, e.dist); }}int main(){ int n; while(scanf("%... 阅读全文
posted @ 2013-08-15 18:15 pangbangb 阅读(207) 评论(0) 推荐(0) 编辑
摘要: http://www.computerweekly.com/blogs/StorageBuzz/2013/07/storage-virtualisation-vs-soft.html这篇blog的目的是试着消除储存领域中两个术语的一些误解。这两个术语其实是非常相互关联的:储存虚拟化(storagevirtualization)和软件定义储存(software-definedstorage)。首先,让我们来看看储存虚拟化。在Computerweekly.com,我们非常清楚的知道有很多关于这个术语的疑惑。在年度读者投票中,我们一直听到这样的反馈:“储存虚拟化”在我们来年的IT部门的to-doli 阅读全文
posted @ 2013-08-15 18:12 pangbangb 阅读(250) 评论(0) 推荐(0) 编辑
摘要: 1. C# 代码风格要求1.1注释类型、属性、事件、方法、方法参数,根据需要添加注释。如果类型、属性、事件、方法、方法参数的名称已经是自解释了,则不需要加注释;否则必须添加注释。当添加注释时,添加方式如下图所示:1.2 类型(类、结构、委托、接口)、字段、属性、方法、事件的命名优先考虑英文,如果英文没有合适的单词描述,可以使用拼音,使用中文是不符合要求的。唯一可以使用中文的地方是枚举的枚举项,枚举项实际已经不属于本节标题的范畴了。这里只是放到一起说明,如下图所示:1.3 不使用缩写所有类型、方法、参数、变量的命名不得使用缩写,包括大家熟知的缩写,例如msg。1.4 代码使用半展开第一步,打开V 阅读全文
posted @ 2013-08-15 18:10 pangbangb 阅读(95) 评论(0) 推荐(0) 编辑
上一页 1 ··· 207 208 209 210 211 212 213 214 215 ··· 249 下一页