1076. Trash
Time limit: 1.0 second
Memory limit: 64 MB
You were just hired as CEO of the local junkyard.One of your jobs is dealing with the incoming trash and sorting it for recycling.The ...
分类:
编程语言 时间:
2015-06-25 23:06:47
阅读次数:
529
//设置一天内的一个时间点
Calendarcal=Calendar.getInstance();
cal.set(Calendar.HOUR_OF_DAY,0);//设置一天中的某一消失
cal.set(Calendar.MINUTE,0);//设置分钟
cal.set(Calendar.SECOND,0);//设置秒
cal.set(Calendar.MILLISECOND,0);//设置毫秒
Timestamptime=newTim..
分类:
其他好文 时间:
2015-06-25 21:31:53
阅读次数:
171
Multi-pathConvolutional Neural Network for Complex Image Classification
Suppresshigh frequency components with Bilateral filter in the second path
ParseNet:Looking Wider to See Better
cod...
分类:
其他好文 时间:
2015-06-25 10:30:36
阅读次数:
226
用pair作为基本结构保存q和d,在用一个数组vector<pair >来存储输入数据。然后按照等待时间 d 排序,注意用sort排序默认是用first,这里的的first是q,所以要重写一个比较函数,用second排序。
接下来就是贪心算法,用优先队列priority_queue<pair > 存储结果,这里体现了用pair的优点,刚好优先队列中就是first高优先级高。
一个个入队,如果总时间超过了当前限制时间,则把队中花费时间最长的元素(就是q最大的)删掉。...
分类:
其他好文 时间:
2015-06-25 09:03:00
阅读次数:
205
先考虑一个问题,总和为零,那么意味着正数之和与负数之和的绝对值相等,那么所有数的绝对值之和必定是偶数,所以先判断绝对值之和是不是偶数,不是偶数直接无解。
如果是偶数,把绝对值之和除以2就是正数之和,把输入的序列排序,然后从大到小贪心求解。因为排序之后顺序有了变化,所以用了pair存储,first是值,而second是原始序列中的位置,这样排序的时候存储位置的值也是跟着变化,但每个值的原始位置信息还保存完好。...
分类:
其他好文 时间:
2015-06-24 22:40:57
阅读次数:
158
Write a SQL query to get the second highest salary from theEmployeetable.+----+--------+| Id | Salary |+----+--------+| 1 | 100 || 2 | 200 || ...
分类:
数据库 时间:
2015-06-24 18:08:06
阅读次数:
124
2025. Line Fighting
Time limit: 1.0 second
Memory limit: 64 MB
Boxing, karate, sambo… The audience is sick of classic combat sports. That is why a popular sports channel launches a new compet...
分类:
其他好文 时间:
2015-06-24 16:35:10
阅读次数:
134
1601. AntiCAPS
Time limit: 0.5 second
Memory limit: 64 MB
The blonde Angela has a new whim: internet chats. Of course, as any blonde, shewrites her messages using the upper case. You are the ...
分类:
其他好文 时间:
2015-06-24 12:58:34
阅读次数:
120
There are N integers (1A[j].
Input
The first line of the input contains the number N. The second line contains N numbers A1...AN.
Output
Write amount of such pairs.
Sample test(s)...
分类:
编程语言 时间:
2015-06-24 11:01:38
阅读次数:
122
1180. Stone Game
Time limit: 1.0 second
Memory limit: 64 MB
Two Nikifors play a funny game. There is a heap of
N stones in front of them. Both Nikifors in turns take some stones from the hea...
分类:
其他好文 时间:
2015-06-23 18:02:36
阅读次数:
108