上一页 1 ··· 23 24 25 26 27 28 29 30 31 ··· 33 下一页
摘要: tar 解包:tar xvf FileName.tar 打包:tar cvf FileName.tar DirName (注:tar是打包,不是压缩!) ——————————————— .gz 解压1:gunzip FileName.gz 解压2:gzip -d FileName.gz 压缩:gzi 阅读全文
posted @ 2014-04-15 22:41 陈泽泽 阅读(161) 评论(0) 推荐(0) 编辑
摘要: http://acm.nyist.net/JudgeOnline/status.php?pid=19 阅读全文
posted @ 2014-04-07 22:13 陈泽泽 阅读(151) 评论(0) 推荐(0) 编辑
摘要: http://acm.nyist.net/JudgeOnline/problem.php?pid=8 阅读全文
posted @ 2014-04-04 20:23 陈泽泽 阅读(152) 评论(0) 推荐(0) 编辑
摘要: http://acm.nyist.net/JudgeOnline/problem.php?pid=5 阅读全文
posted @ 2014-04-04 20:01 陈泽泽 阅读(155) 评论(0) 推荐(0) 编辑
摘要: http://www.cnblogs.com/HpuAcmer/archive/2012/05/06/2486591.html 题目链接:http://acm.nyist.net/JudgeOnline/problem.php?pid=61 阅读全文
posted @ 2014-04-03 23:24 陈泽泽 阅读(223) 评论(0) 推荐(0) 编辑
摘要: http://acm.nyist.net/JudgeOnline/problem.php?pid=37 先逆转原来的字符串,再用原来的字符串跟逆转后的字符串进行比较,求得的最长公共子序列就是回文串,也就是不需要添加的,再用总长度减去最长公共子序列就可以得到最少需要添加的字符数。 阅读全文
posted @ 2014-04-03 22:40 陈泽泽 阅读(159) 评论(0) 推荐(0) 编辑
摘要: http://acm.nyist.net/JudgeOnline/problem.php?pid=36 阅读全文
posted @ 2014-04-03 22:35 陈泽泽 阅读(152) 评论(0) 推荐(0) 编辑
摘要: http://acm.nyist.net/JudgeOnline/problem.php?pid=38 阅读全文
posted @ 2014-03-28 19:37 陈泽泽 阅读(225) 评论(0) 推荐(0) 编辑
摘要: http://acm.nyist.net/JudgeOnline/problem.php?pid=106 阅读全文
posted @ 2014-03-27 23:47 陈泽泽 阅读(148) 评论(0) 推荐(0) 编辑
摘要: 1)区间完全覆盖问题 问题描述:给定一个长度为m的区间,再给出n条线段的起点和终点(注意这里是闭区间),求最少使用多少条线段可以将整个区间完全覆盖 样例: 区间长度8,可选的覆盖线段[2,6],[1,4],[3,6],[3,7],[6,8],[2,4],[3,5] 解题过程: 1将每一个区间按照左端 阅读全文
posted @ 2014-03-27 23:25 陈泽泽 阅读(341) 评论(0) 推荐(0) 编辑
摘要: http://acm.hdu.edu.cn/showproblem.php?pid=2546 阅读全文
posted @ 2014-03-26 20:58 陈泽泽 阅读(340) 评论(0) 推荐(0) 编辑
摘要: http://acm.hdu.edu.cn/showproblem.php?pid=1864最大报销额Time Limit: 1000/1000 MS (Java/Others)Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 14865Accepted Submission(s): 4200Problem Description现有一笔经费可以报销一定额度的发票。允许报销的发票类型包括买图书(A类)、文具(B类)、差旅(C类),要求每张发票的总额不得超过1000元,每张发票上,单项物品的价值不得超过600元。现请你编写 阅读全文
posted @ 2014-03-26 20:14 陈泽泽 阅读(242) 评论(0) 推荐(0) 编辑
摘要: 103977802014-03-26 00:13:51Accepted295546MS480K676 BC++泽泽http://acm.hdu.edu.cn/showproblem.php?pid=2955RobberiesTime Limit: 2000/1000 MS (Java/Others)Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 9836Accepted Submission(s): 3673Problem DescriptionThe aspiring Roy the Robber has seen 阅读全文
posted @ 2014-03-26 00:15 陈泽泽 阅读(222) 评论(0) 推荐(0) 编辑
摘要: 103975072014-03-25 23:30:21Accepted12030MS480K428 BC++泽泽题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1203Problem DescriptionSpeakless很早就想出国,现在他已经考完了所有需要的考试,准备了所有要准备的材料,于是,便需要去申请学校了。要申请国外的任何大学,你都要交纳一定的申请费用,这可是很惊人的。Speakless没有多少钱,总共只攒了n万美元。他将在m个学校中选择若干的(当然要在他的经济承受范围内)。每个学校都有不同的申请费用a(万美元),并且Speakless 阅读全文
posted @ 2014-03-25 23:34 陈泽泽 阅读(318) 评论(0) 推荐(0) 编辑
摘要: 一, 最长递增子序列问题的描述 设L=<a1,a2,…,an>是n个不同的实数的序列,L的递增子序列是这样一个子序列Lin=<aK1,ak2,…,akm>,其中k1<k2<…<km且aK1<ak2<…<akm。求最大的m值。 二,算法:动态规划法:O(n^2) 设f(i)表示L中以ai为末元素的最长 阅读全文
posted @ 2014-03-25 22:35 陈泽泽 阅读(308) 评论(0) 推荐(0) 编辑
上一页 1 ··· 23 24 25 26 27 28 29 30 31 ··· 33 下一页