摘要:
http://acm.hdu.edu.cn/showproblem.php?pid=1050题意:不占用通道就可以同时过,占用通道就不能同时过,问最短的时间全部搬完桌子。贪心策略--每个房子前的通道用数组a[200]表示,占用通道就加+1;占用通道最大的数,就是最短的时间再乘以10;需要注意的是房间... 阅读全文
摘要:
http://acm.hdu.edu.cn/showproblem.php?pid=2037贪心问题---选择不相交区间问题。小白书152页。(ai,bi),b从小到大排序后,贪心策略:一定要选第一个区间。为什么小白书上有。今年暑假不ACTime Limit: 2000/1000 MS (Java/... 阅读全文
摘要:
http://www.cnblogs.com/zhangchaoyang/articles/2012070.html最大子序列最大子序列是要找出由数组成的一维数组中和最大的连续子序列。比如{5,-3,4,2}的最大子序列就是 {5,-3,4,2},它的和是8,达到最大;而 {5,-6,4,2}的最大... 阅读全文
摘要:
http://i.cnblogs.com/EditPosts.aspx?opt=1hash:这题可以把字符串转换成数值,然后判断数值是否重复。转换成nc进制的数来表示。 Crazy SearchTime Limit: 10000/5000 MS (Java/Others) Memory Lim... 阅读全文
摘要:
http://acm.hdu.edu.cn/showproblem.php?pid=1280前m大的数Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)Total Submission(s)... 阅读全文
摘要:
http://poj.org/problem?id=2823单调队列的启蒙题。 Sliding WindowTime Limit:12000MSMemory Limit:65536KTotal Submissions:39404Accepted:11680Case Time Limit:5000M... 阅读全文
摘要:
http://acm.hdu.edu.cn/showproblem.php?pid=3555BombTime Limit: 2000/1000 MS (Java/Others)Memory Limit: 131072/65536 K (Java/Others)Total Submission(s):... 阅读全文
摘要:
http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemId=4744Escape Time IITime Limit: 2 Seconds Memory Limit: 65536 KBThere is a fire in LTR ’ s h... 阅读全文
摘要:
数位dp模板。http://acm.hdu.edu.cn/showproblem.php?pid=2089 不要62Time Limit: 1000/1000 MS (Java/Others)Memory Limit: 32768/32768 K (Java/Others)Total Submiss... 阅读全文
摘要:
MachineTime Limit: 2 Seconds Memory Limit: 65536 KBIn a typical assembly line, machines are connected one by one. The first machine's output product ... 阅读全文