http://acm.hdu.edu.cn/showproblem.php?pid=4864
大致题意:有n台机器和m个任务,都有两个参数工作时间time和难度level。每个机器一天只能完成一个任务,一个任务只能被一台机器完成,每个任务完成后的利润是500*time+2*level。问在一天能完成尽量多的任务下获得的利润是多少。
思路:由上述公式知决定利润的决定性因素是时间,...
分类:
其他好文 时间:
2014-07-23 21:02:45
阅读次数:
227
设置包的日志等级Level level = Level.toLevel(Level.DEBUG);Logger logger = LogManager.getLogger(“package”);logger.setLevel(level);设置全局日志等级Levellevel=Level.toLev...
分类:
其他好文 时间:
2014-07-23 20:34:15
阅读次数:
187
Problem Description
Today the company has m tasks to complete. The ith task need xi minutes to complete. Meanwhile, this task has a difficulty level yi. The machine whose level below this task’s le...
分类:
其他好文 时间:
2014-07-23 16:36:41
阅读次数:
208
遇到android项目导入出现后重复空包等错误,往往是导入的java编译级别有关,点击项目properties->java Compiler ->修改Compiler compliance level 一般是1.6。修改完成clean项目之后,往往还会遇到:gen already exists bu...
分类:
其他好文 时间:
2014-07-23 14:47:56
阅读次数:
244
1、要能够分析出贪心的理由
2、在lv里面进行lower_bound : 因为对于task的time本来就已经是从大到小排好序的,对于task里的每个time我们应该从最小的level开始放,
因为可能在task后面有比较大的lv;
3、lower_bound的用法
4、二分的写法
5、比较函数cmp
#include
#include
#include
#i...
分类:
其他好文 时间:
2014-07-23 13:29:36
阅读次数:
232
Problem Description
Today the company has m tasks to complete. The ith task need xi minutes to complete. Meanwhile, this task has a difficulty level yi. The machine whose level below this task’s le...
分类:
其他好文 时间:
2014-07-22 23:57:27
阅读次数:
601
题意: N台机器,M个任务,机器和任务分别有一个time值,和level值。每台机器上最多只能运行一个任务,而且机器的time值和level值要分别大于等于该任务的值。完成一个任务会获得(500*time+2*level)的价值。 求能完成的最多任务数,和这种情况下可以获得的最大价值。思路: ...
分类:
其他好文 时间:
2014-07-22 23:02:52
阅读次数:
235
在红黑联盟上看到的,这几天一直考虑做一个Notification 的带下载功能的自定义通知,但没搞出来,无意中在论坛看到这个。先Mark,明天试试。
从Android 2.3(API level 9)开始Android用系统服务(Service)的方式提供了Download Manager来优化处理长时间的下载操作。Download Manager处理HTTP连接并监控连接中的状态变化以...
分类:
移动开发 时间:
2014-07-22 14:50:04
阅读次数:
345
The use of laser machines and systems in the modern world has increased to a great level. This is because of the unique end results that the user achi...
分类:
其他好文 时间:
2014-07-22 00:15:34
阅读次数:
224
java很给力逆序用了Colletcions.reverse();/** * Definition for binary tree * public class TreeNode { * int val; * TreeNode left; * TreeNode right; ...
分类:
其他好文 时间:
2014-07-22 00:04:35
阅读次数:
154