UVa 11389 - The Bus Driver Problem

题目:有n个上午的任务和下午的任务,分配给司机,如果工作总时间超过d,超过的部分要给加班费;

现在让你安排任务,问最小的加班分花费。

分析:贪心。将两个任务分别按递增和递减序排序,每个对应边号的一组即可。

设序列中的两组配对的元素为m1,a1,m2,a2 且 m1≤m2,a1≤a2;

则配对方式<m1,a2>,<m2,a1>优于<m1,a1>,<m2,a2>(浪费的可能更少)。

说明:(⊙_⊙)。

#include <algorithm>
#include <iostream>
#include <cstdlib>
#include <cstring>
#include <cstdio>
#include <cmath>

using namespace std;

int morni[101];
int after[101];

int cmp1(int a, int b){ return a < b; }
int cmp2(int a, int b){ return a > b; }

int main()
{
	int n,d,r;
	while (~scanf("%d%d%d",&n,&d,&r) && n) {
		for (int i = 0 ; i < n ; ++ i)
			scanf("%d",&morni[i]);
		for (int i = 0 ; i < n ; ++ i)
			scanf("%d",&after[i]);
		sort(morni, morni+n, cmp1);
		sort(after, after+n, cmp2);
		int sum = 0;
		for (int i = 0 ; i < n ; ++ i)
			if (morni[i]+after[i] > d)
				sum += r*(morni[i]+after[i]-d);

		printf("%d\n",sum);
	}
    return 0;
}
时间: 2024-10-31 19:49:14

UVa 11389 - The Bus Driver Problem的相关文章

UVA 11389 The Bus Driver Problem 贪心水题

题目链接:UVA - 11389 题意描述:有n个司机,n个早班路线和n个晚班路线,给每个司机安排一个早班路线和一个晚班路线,使得每个早班路线和晚班路线只属于一个司机.如果一个司机早班和晚班总的驾驶时间超过d,那么超出的时间按每小时r元付给司机.求最小的费用. 算法分析:一枚贪心的小水题.对早班路线的时间按照从大到小排序,对晚班路线的时间按照从小到大排序,然后就可以了. 1 #include<iostream> 2 #include<cstdio> 3 #include<cs

【策略】UVa 11389 - The Bus Driver Problem

题意: 有司机,下午路线,晚上路线各n个.给每个司机恰好分配一个下午路线和晚上路线.给出行驶每条路线的时间,如果司机开车时间超过d,则要付加班费d×r.问如何分配路线才能使加班费最少. 虽然代码看起来很水.但一直不理解为什么,找到这位大神的解释与大家参考.http://www.cnblogs.com/AOQNRMGYXLMV/p/4122236.html 不妨假设:A1≥A2,B1≤B2,水平线代表d 情况一: 如图,司机一要付加班费,司机二不用,如果我们将B1.B2交换: 因为B1≤B2,所以

UVA11389-The Bus Driver Problem

题目链接 题意:n个司机,n个下午路线和n个夜间的行驶时间.每个司机恰好分配到一个下午路线和一个夜间路线.司机行驶如果超过规定的行驶总时间,每个单位时间要多付给司机r元,求最小要给所有司机的加班费. 思路:贪心,将两个时间段的行驶时间排序,然后依次取最大和最小相加减去规定时间.那么超过的时间将最小,加班费也会最小. #include <iostream> #include <cstdio> #include <cstring> #include <algorith

General Problem Solving Techniques [Intermediate-1]~G - The Bus Driver Problem

In a city there are n bus drivers. Also there are n morning bus routes and n afternoon bus routes withvarious lengths. Each driver is assigned one morning route and one evening route. For any driver, ifhis total route length for a day exceeds d, he h

UVa 11389 (贪心) The Bus Driver Problem

题意: 有司机,下午路线,晚上路线各n个.给每个司机恰好分配一个下午路线和晚上路线. 给出行驶每条路线的时间,如果司机开车时间超过d,则要付加班费d×r. 问如何分配路线才能使加班费最少. 分析: 感觉上是要先排序,然后时间最长的路线配另一个时间最短的路线. 这里就严格证明一下这样贪心的正确性. 以两条路线为例,其他情况都是类似的: 不妨假设:A1≥A2,B1≤B2,水平线代表d 情况一: 如图,司机一要付加班费,司机二不用,如果我们将B1.B2交换: 因为B1≤B2,所以付给司机一的加班费不会

The Bus Driver Problem

题目链接:https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=2384 题目大意: n个司机,设定每位司机上午下午各有一条行驶路线,现给出n条上午行驶路线时长和n条下午行驶路线时长,规定的工作时长为d小时,如果司机工作时长超过d小时,则超出的时间按每小时r塔卡(孟加拉国货币单位)计算加班费用,问:分配行驶路线后老板支付的加班费用最少为多少? 题

UVA 11389

UVA 11389 Time Limit:1000MS     Memory Limit:0KB     64bit IO Format:%lld & %llu Description II U C   ONLINE   C ON TEST   2 008 The Bus Driver Problem Input: standard input Output: standard output In a city there are n bus drivers. Also there are n 

UVa 729 - The Hamming Distance Problem

题目:构造n位01串,其中有m个1的所有组合. 分析:搜索.枚举.可以利用库函数,求解,也可以利用dfs求解:我这里采用位运算计算组合数. 说明:注意库啊! #include <iostream> #include <cstdlib> #include <cstdio> using namespace std; int S[20]; int main() { int T,N,M; while ( cin >> T ) for ( int t = 1 ; t

UVA - 10239 The Book-shelver&#39;s Problem

Description Problem D The Book-shelver's Problem Input: standard input Output: standard output Time Limit: 5 seconds Memory Limit: 32 MB You are given a collection of books, which must be shelved in a library bookcase ordered (from top to bottom in t