博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[ACM_水题] UVA 11729 Commando War [不可同时交代任务 可同时执行 最短完成全部时间 贪心]...
阅读量:6186 次
发布时间:2019-06-21

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

 

There is a war and it doesn't look very promising for your country. Now it's time to act. You have a commando squad at your disposal and planning an ambush on an important enemy camp located nearby. You have soldiers in your squad. In your master-plan, every single soldier has a unique responsibility and you don't want any of your soldier to know the plan for other soldiers so that everyone can focus on his task only. In order to enforce this, you brief every individual soldier about his tasks separately and just before sending him to the battlefield. You know that every single soldier needs a certain amount of time to execute his job. You also know very clearly how much time you need to brief every single soldier. Being anxious to finish the total operation as soon as possible, you need to find an order of briefing your soldiers that will minimize the time necessary for all the soldiers to complete their tasks. You may assume that, no soldier has a plan that depends on the tasks of his fellows. In other words, once a soldier  begins a task, he can finish it without the necessity of pausing in between.

 

Input

 

There will be multiple test cases in the input file. Every test case starts with an integer N (1<=N<=1000), denoting the number of soldiers. Each of the following N lines describe a soldier with two integers B (1<=B<=10000) J (1<=J<=10000)seconds are needed to brief the soldier while completing his job needs seconds. The end of input will be denoted by a case with N =0 . This case should not be processed.

 

Output

 

For each test case, print a line in the format, Case X: Y, where X is the case number & Y is the total number of seconds counted from the start of your first briefing till the completion of all jobs.

 

Sample Input                                               Output for Sample Input

3

2 5

3 2

2 1

3

3 3

4 4

5 5

0

8

Case 2: 15

 


Problem Setter: Mohammad Mahmudur Rahman, Special Thanks: Manzurur Rahman Khan

 

 

题目大意:n个部下,没人要完成一个任务。第i个任务要用bi时间交代,ji时间完成。要求交代不能同时,执行可以同时,求最小全部任务完成时间。

解题思路:执行时间较长的任务应该先执行,贪心,按j大从大到小对各个任务排序。

 

 

1 #include
2 #include
3 #include
4 using namespace std; 5 struct Job{ 6 int j,b; 7 bool operator<(const Job& x)const{ 8 return j>x.j; 9 }10 };11 int main(){12 int n,cases=1;13 while(cin>>n && n){14 vector
V;15 Job temp_job;16 for(int i=0;i
>temp_job.b>>temp_job.j;18 V.push_back(temp_job);19 }20 sort(V.begin(),V.end());//按j从大到小排序21 int s=0;22 int ans=0;23 for(int i=0;i

 

 

 

转载地址:http://pmada.baihongyu.com/

你可能感兴趣的文章
我的友情链接
查看>>
Linux中JDK环境配置
查看>>
故障转移之starwind共享存储篇
查看>>
Java编程错误
查看>>
HTTP之2 HTTP优化(HTTP性能优化、安全的HTTP协议)
查看>>
线上服务mcelog负载异常分析处理流程
查看>>
用手机wifi看你电脑里视频听MP3的方法
查看>>
JavaScript实现按键精灵
查看>>
REMOTE HOST IDENTIFICATION HAS CHANGED
查看>>
mysql查看是否区分大小写
查看>>
css关于常规流和浮动的两个疑问
查看>>
获取登录地区
查看>>
十年只为一个摧残的梦
查看>>
centos不小心删除/root目录解决办法
查看>>
45、BGP配置实验之Local preference选路
查看>>
我的友情链接
查看>>
人体自身的神奇补肾法 ——你在外面花多少钱都学不到的<转>
查看>>
Linux查CC***
查看>>
JSP里的9大内置对象,背过,应聘笔试会用。
查看>>
取消单元格的点击事件
查看>>