精神食量,不限程序员 非常重要的个人品质 1.TemperanceEat not to dullness,drink not to elevator. 2.Silence:Speak not but what may benefit others or yourself.Avoid trifling ...
分类:
其他好文 时间:
2016-04-27 12:50:56
阅读次数:
140
算是精神食量吧 1.Temperance Eat not to dullness,drink not to elevator. 2.Silence: Speak not but what may benefit others or yourself. Avoid trifling conversat ...
分类:
其他好文 时间:
2016-04-13 20:45:32
阅读次数:
117
题目描述 Problem Description The highest building in our city has only one elevator. A request list is made up with N positive numbers. The numbers denote... ...
分类:
其他好文 时间:
2016-04-04 22:45:06
阅读次数:
168
排序+背包。 先对按高度限制从小到大排序,然后做背包即可。0/1背包300多ms过的,可以用完全背包二进制优化。
分类:
其他好文 时间:
2016-03-22 20:38:41
阅读次数:
218
#include #include int main(){ int n; int i,j; int num[101];while(1){ int sum=0; memset(num,0,sizeof(num)); scanf("%d",&n); if(n==0) { break; } else{ n...
分类:
其他好文 时间:
2015-12-23 00:28:12
阅读次数:
225
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1008分析:先算出上楼的层数,还有下楼的层数,乘以各自所花费的时间(每上一层楼或下一层楼),再加上停顿的时间即是答案。代码: 1 #include 2 3 int elevator[105]; 4 5.....
分类:
其他好文 时间:
2015-12-17 20:50:35
阅读次数:
138
Space ElevatorTime Limit:1000MSMemory Limit:65536KTotal Submissions:9970Accepted:4738DescriptionThe cows are going to space! They plan to achieve orbi...
分类:
其他好文 时间:
2015-12-15 21:04:37
阅读次数:
266
1008. Elevator (20)时间限制400 ms内存限制65536 kB代码长度限制16000 B判题程序Standard作者CHEN, YueThe highest building in our city has only one elevator. A request list is...
分类:
其他好文 时间:
2015-12-09 19:23:11
阅读次数:
141
时间限制400 ms内存限制65536 kB代码长度限制16000 B判题程序Standard作者CHEN, YueThe highest building in our city has only one elevator. A request list is made up with N pos...
分类:
其他好文 时间:
2015-12-06 11:22:33
阅读次数:
173
Elevator.hclass Elevator{public: Elevator(); ~Elevator(); void getNowNum(); void SetToNum(int); void SetNowNum(int); void RUN(); void set_choice(int)....
分类:
编程语言 时间:
2015-11-10 19:09:43
阅读次数:
171