标签:style http color os io for ar 时间
题意:n个司机,n个下午路线和n个夜间的行驶时间。每个司机恰好分配到一个下午路线和一个夜间路线。司机行驶如果超过规定的行驶总时间,每个单位时间要多付给司机r元,求最小要给所有司机的加班费。
思路:贪心,将两个时间段的行驶时间排序,然后依次取最大和最小相加减去规定时间。那么超过的时间将最小,加班费也会最小。
#include <iostream> #include <cstdio> #include <cstring> #include <algorithm> using namespace std; const int MAXN = 105; int x[MAXN], y[MAXN]; int n, d, r; int main() { while (scanf("%d%d%d", &n, &d, &r) != EOF) { if (!n && !d && !r) break; for (int i = 0; i < n; i++) scanf("%d", &x[i]); for (int i = 0; i < n; i++) scanf("%d", &y[i]); sort(x, x + n); sort(y, y + n); long long sum = 0; for (int i = 0; i < n; i++) { int temp = x[i] + y[n - 1 - i]; if (temp - d > 0) sum += temp - d; } printf("%lld\n", sum * r); } return 0; }
UVA11389-The Bus Driver Problem,布布扣,bubuko.com
UVA11389-The Bus Driver Problem
标签:style http color os io for ar 时间
原文地址:http://blog.csdn.net/u011345461/article/details/38473771