acm 1014 满载问题

来源:互联网 发布:淘宝好评80字 编辑:程序博客网 时间:2024/06/07 02:21

1.1014

2.

Problem Description
Before bridges were common, ferries were used to transport cars across rivers. River ferries, unlike their larger cousins, run on a guide line and are powered by the river's current. Cars drive onto the ferry from one end, the ferry crosses the river, and the cars exit from the other end of the ferry.
There is a ferry across the river that can take n cars across the river in t minutes and return in t minutes. m cars arrive at the ferry terminal by a given schedule. What is the earliest time that all the cars can be transported across the river? What is the minimum number of trips that the operator must make to deliver all cars by that time?

Input
The first line of input contains c, the number of test cases. Each test case begins with n, t, m. m lines follow, each giving the arrival time for a car (in minutes since the beginning of the day). The operator can run the ferry whenever he or she wishes, but can take only the cars that have arrived up to that time.

Output
For each test case, output a single line with two integers: the time, in minutes since the beginning of the day, when the last car is delivered to the other side of the river, and the minimum number of trips made by the ferry to carry the cars within that time. <br> <br>You may assume that 0 < n, t, m < 1440. The arrival times for each test case are in non-decreasing order.

Sample Input
22 10 1001020304050607080902 10 3103040

Sample Output
100 550 2

3.贪心思想

4.

在没有达到最后N个人之前,ferry都是满载才出发.(参考飘羽逸狂)
如果当前达到了倒数的第N个人,那么不论此时ferry中有多少人,都要出发,ferry回来之后再把剩下的N个人都载过去.

对于当前到达的人,假设是第k个人,考虑是否将其装入ferry对于第k+n个人的影响
如果不装入,那么ferry回来的时间是至少是tt[k-1]+2*d,这么一来装入第k+n个人的时间至少是tt[k-1]+2*d+2*d
如果装入,那么回来的时间至少是tt[k]+2*d
并且tt[k-1]+2*d>tt[k]
因为如果tt[k-1]+2*d<=tt[k]
总可以将第k-1个人提前运走
因此结论就是
在没有达到最后N个人之前,ferry都是满载才出发.

5

#include<iostream>
#include<cstring>
#include<stdio.h>
#include<string>
#include<stack>
#include<map>
#include<vector>
#include<cmath>
#include<set>
#include<cctype>
#include<queue>
using namespace std;
int n,t,m;
int time[10000];


void clear() {
    memset(time,0,sizeof(time));
}
int main() {
    int Case;
    scanf("%d",&Case);
    while(Case--) {
        scanf("%d %d %d",&n,&t,&m);
        clear();
        int r = m%n;
        int k = m/n;
        int ans1 = 0,ans2;
        if(r)
            ans2 = k + 1;
        else
            ans2 = k;
        for(int i=1;i<=m;i++)
            scanf("%d",&time[i]);
        if(r)
            ans1 = time[r] + t * 2;
        int j = 1;
        while(j <= k) {
            if(ans1 >= time[j * n + r]) {
                ans1 += t * 2;
                if(j == k)
                    ans1 -= t;
            }
            else {
                ans1 = time[j * n + r] + t * 2;
                if(j == k)
                    ans1 -= t;
            }
            j++;
        }
        printf("%d %d\n",ans1,ans2);
    }
    return 0;
}.

0 0
原创粉丝点击