题目链接
题意:有一家大型的钢铁厂,每月初都收到大量客户的订单,订单包括定制的钢铁的数量q,以及交货的截止时间d。每个单位时间只能完成一个订单的工作,不能同时进行多个,要求怎么安排使得接受的订单最多。
思路:要使得订单最多,首先我们先按照截止日期,从小到大排序。
当qi>qj 并且 didj时,那么我们应该优先选择订单j才能使结果最优,所以我们使用优先队列来维护q值。...
分类:
其他好文 时间:
2014-08-13 19:03:47
阅读次数:
175
Don't forget the things you once owned. Treasure the things you can't get. Don't give up the things that belong to you and keep those lost things in m...
分类:
其他好文 时间:
2014-08-13 17:55:06
阅读次数:
220
设计算法并写出代码移除字符串中重复的字符,不能使用额外的缓存空间。注意: 可以使用额外的一个或两个变量,但不允许额外再开一个数组拷贝。
简单题直接上代码:
#include
#include
void remove_duplicate(char vStr[])
{
int Len = strlen(vStr);
if (!Len)
{
printf("the stri...
分类:
其他好文 时间:
2014-08-13 01:11:05
阅读次数:
252
Perform this exercise two rounds.These examples of simple exercises that can be performed in a large bag. Always remember to keep your hands on traini...
分类:
其他好文 时间:
2014-08-08 12:06:45
阅读次数:
298
charAt():返回在指定位置的字符。charCodeAt():返回在指定的位置的字符的 Unicode 编码。var s = "Smile forever!";s.charAt(2); //is.charCodeAt(2); //105concat():连接字符串,参数可以是多个字符串。va.....
分类:
编程语言 时间:
2014-08-06 22:33:12
阅读次数:
286
Keep Your Code Clean;Don’t Repeat Yourself;Done is Better than Perfect;沟通、简单、灵活;拥抱变化,持续交付;小步前进,持续改善;专业赢得尊重
分类:
其他好文 时间:
2014-08-06 18:53:12
阅读次数:
206
这篇《MVC用非Entity Framework将数据显示于视图》http://www.cnblogs.com/insus/p/3364235.html也算是MVC视图显示数据库的数据,不过有点不好,是直接于视图中实例化对象FruiCategoryEntity,而有Controller却keep为空...
分类:
Web程序 时间:
2014-08-06 18:20:21
阅读次数:
296
当我们设置我的的div,或者其它文本框固定宽度之后,文本内容过多就会出文本溢出(显示在区域外面,不换行的情况)。
这时我们可以使用Css中的几个属于来解。有以下的三个属于可以解决问题:
1,word-break 属性规定自动换行的处理方法。
word-break: normal|break-all|keep-all;
值
描述
normal
...
分类:
Web程序 时间:
2014-08-06 01:57:30
阅读次数:
210
错误代码如下:
E:\>wsimport -keep service.xml
parsing WSDL...
[WARNING] src-resolve: Cannot resolve the name 'soapenc:Array' to a(n) 'type definition' component.
line 505 of file:/E:/service1.xml#types...
分类:
Web程序 时间:
2014-08-05 19:27:20
阅读次数:
242
TreeView keep selected node highlightedpublic QualityCheck() { InitializeComponent(); //trvIndexName.HideSelection = fals...
分类:
其他好文 时间:
2014-08-05 13:49:09
阅读次数:
180