博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HDU 4442 Physical Examination
阅读量:4603 次
发布时间:2019-06-09

本文共 2888 字,大约阅读时间需要 9 分钟。

Physical Examination

Time Limit: 1000ms
Memory Limit: 32768KB
This problem will be judged on 
HDU. Original ID: 
64-bit integer IO format: %I64d      Java class name: Main
 
WANGPENG is a freshman. He is requested to have a physical examination when entering the university.
Now WANGPENG arrives at the hospital. Er….. There are so many students, and the number is increasing!
There are many examination subjects to do, and there is a queue for every subject. The queues are getting longer as time goes by. Choosing the queue to stand is always a problem. Please help WANGPENG to determine an exam sequence, so that he can finish all the physical examination subjects as early as possible.
 

Input

There are several test cases. Each test case starts with a positive integer n in a line, meaning the number of subjects(queues).
Then n lines follow. The i-th line has a pair of integers (ai, bi) to describe the i-th queue:
1. If WANGPENG follows this queue at time 0, WANGPENG has to wait for ai seconds to finish this subject.
2. As the queue is getting longer, the waiting time will increase bi seconds every second while WANGPENG is not in the queue.
The input ends with n = 0.
For all test cases, 0<n≤100000, 0≤ai,bi<231.
 

Output

For each test case, output one line with an integer: the earliest time (counted by seconds) that WANGPENG can finish all exam subjects. Since WANGPENG is always confused by years, just print the seconds mod 365×24×60×60.
 

Sample Input

51 22 33 44 55 60

Sample Output

1419
Hint
In the Sample Input, WANGPENG just follow the given order. He spends 1 second in the first queue, 5 seconds in the 2th queue, 27 seconds in the 3th queue, 169 seconds in the 4th queue, and 1217 seconds in the 5th queue. So the total time is 1419s. WANGPENG has computed all possible orders in his 120-core-parallel head, and decided that this is the optimal choice.

Source

 
解题:贪心。贪心策略就是:假设先选1号,再选2号项目,那么有  
a1 + a1*b2 + b2 < a2 + a2b1 + a1
 .
 
这样排完序即可。
 
1 #include 
2 #include
3 #include
4 #include
5 #include
6 #include
7 #include
8 #include
9 #include
10 #include
11 #include
12 #include
13 #define LL long long14 #define pii pair
15 #define INF 0x3f3f3f3f16 using namespace std;17 const int maxn = 100010;18 const LL mod = 365*24*60*60;19 struct node{20 int x,y;21 };22 node e[maxn];23 bool cmp(const node &a,const node &b){24 return (LL)a.x*b.y < (LL)b.x*a.y;25 }26 int main() {27 int n;28 LL ans;29 while(scanf("%d",&n),n){30 for(int i = 0; i < n; i++)31 scanf("%d %d",&e[i].x,&e[i].y);32 sort(e,e+n,cmp);33 ans = e[0].x;34 for(int i = 1; i < n; i++){35 ans += (e[i].x + ans*e[i].y)%mod;36 ans %= mod;37 }38 printf("%I64d\n",ans);39 }40 return 0;41 }
View Code

 

转载于:https://www.cnblogs.com/crackpotisback/p/3963189.html

你可能感兴趣的文章
C#中检查网络是否连通的二种方法
查看>>
离线Tarjan算法-最近公共祖先问题
查看>>
数据结构(四)队列
查看>>
Android Studio导入第三方类库的方法
查看>>
Tomcat version 7.0 only supports J2EE 1.2, 1.3, 1.4, and Java EE 5 and 6 Web modules
查看>>
Android加速度传感器实现“摇一摇”,带手机振动 .
查看>>
love2d教程7--绘图顺序
查看>>
poj 1269 Intersecting Lines
查看>>
js原型链、继承、this指向等老生常谈却依然不熟的知识点——记录解析
查看>>
python内存数据库pydblite
查看>>
设计模式-1依赖倒置原则示例
查看>>
四则运算缓冲流
查看>>
对call() apply() 方法的简单理解
查看>>
2-1. 变量
查看>>
fir.im Weekly - 可能是 iOS 审核最全面的解决方案
查看>>
银行转账存储过程和流水号生成存储过程
查看>>
节假日设置
查看>>
网络游戏_客户端
查看>>
Tomcat8 配置APR模式
查看>>
<五>初探opengl,编写我们的镜头
查看>>