• URAL 1826. Minefield(数学 递归)


    题目链接:http://acm.timus.ru/problem.aspx?

    space=1&num=1826



    1826. Minefield

    Time limit: 0.5 second
    Memory limit: 64 MB
    To fulfill an assignment, a reconnaissance group of n people must cross the enemy's minefield. Since the group has only one mine detector, the following course of action is taken: two agents cross the field to the enemy's side and then one agent brings the mine detector back to the remaining group. This is repeated until only two agents remain. These two agents then cross the field together.
    Each person gets across the field at their own speed. The speed of a pair is determined by the speed of its slower member.
    Find the minimal time the whole group needs to get over the minefield.

    Input

    The first line contains the integer n (2 ≤ n ≤ 100). The i-th of the following n lines specifies the time the i-th member of the group needs to get over the minefield (the time is an integer from 1 to 600).

    Output

    Output the minimal total time the group needs to cross the minefield.

    Sample

    input output
    4
    1
    10
    5
    2
    
    17


    题意:

    有n个人要经过一片雷区,可是他们仅仅有一个扫雷用的探測器,所以每次仅仅能过去两个人,当中一个人把探測器拿回来,继续再过去两个人,

    每一个人的行走速度不同,所花费的时间,是依照两个人中较慢的那个人所用时间计算的!

    求所有人通过雷区的最短时间。

    PS:

    每次先把最大的两个移过去。当人数大于等于4的时候,

    分两种情况:

    1:最小的来回几次把最大的两个带过去。

    2:先让最小的两个过去,然后最小的把探測器的回来,然后最大的两个过去,对面最小的把探測器带回来。


    代码例如以下:

    #include <cstdio>
    #include <cstring>
    #include <algorithm>
    using namespace std;
    int a[147];
    int ans = 0;
    void cal(int m)
    {
        if(m == 1)
        {
            ans+=a[0];
        }
        else if(m == 2)
        {
            ans+=a[1];
        }
        else if(m == 3)
        {
            ans+=a[0]+a[1]+a[2];
        }
        else
        {
    
            if((a[0]*2+a[m-1]+a[m-2]) < (a[0]+2*a[1]+a[m-1]))
            {
                ans+=a[0]*2+a[m-1]+a[m-2];//0号一个人来回
            }
            else
            {
                ans+=a[0]+2*a[1]+a[m-1];//0,1号两个人来回
            }
            cal(m-2);
        }
    }
    int main()
    {
        int n;
        while(~scanf("%d",&n))
        {
            for(int i = 0; i < n; i++)
            {
                scanf("%d",&a[i]);
            }
            sort(a,a+n);
            cal(n);
            printf("%d
    ",ans);
        }
        return 0;
    }


  • 相关阅读:
    MT【111】画图估计
    MT【110】巧设法向量解决距离问题
    a++为啥不能用作左值
    qt之正则表达式
    QtWebkit中如何将网页内容转为图片
    数字图像去雾快速算法
    基于AdaBoost的人脸检测
    谈谈自动瘦脸和自动眼睛放大算法
    QT_opengl_gluPerspective没有定义的处理方法
    OpenGL框架+QT版
  • 原文地址:https://www.cnblogs.com/slgkaifa/p/7097287.html
Copyright © 2020-2023  润新知