码迷,mamicode.com
首页 > 其他好文 > 详细

【UVA11729】Commando War

时间:2015-08-05 18:29:34      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:

技术分享

技术分享

给n个人分配任务 分配任务的时间b和执行任务的时间j 每一次只能给一个人分配任务 求最小的时间

贪心求解  将任务 按照执行时间从长到短排序 依次分配任务 并执行 求出时间即所得最短时间 证明自证

#include <cstdio>
#include <algorithm>
using namespace std;

const int maxn = 1010;
struct Job{
    int b, j;
    bool operator < (const Job& x) const{
        return j > x.j;
    }
}job[maxn];

int main(){
    int n;
    int cas = 0;
    while(scanf("%d", &n)!=EOF && n){
        for(int i = 0; i < n; ++i){
            scanf("%d%d", &job[i].b, &job[i].j);
        }
        sort(job, job+n);

        int cnt = 0;
        int ans = 0;
        for(int i = 0; i < n; ++i){
            cnt += job[i].b;
            ans = max(ans, cnt + job[i].j);
        }

        printf("Case %d: %d\n", ++cas, ans);
    }
    return 0;
}


版权声明:本文为博主原创文章,未经博主允许不得转载。

【UVA11729】Commando War

标签:

原文地址:http://blog.csdn.net/u012431590/article/details/47299561

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!