zoukankan      html  css  js  c++  java
  • 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;
    }


  • 相关阅读:
    Delphi泛型系列(很不错)[转静候良机]
    数组的排序
    数据存储到流几种形式(数据流 TStream)
    [转]Delphi TStream详解
    Delphi匿名方法[转 静候良机]
    神一样的崇拜这个女人...打破了我对我们苦b程序员极限的了解
    sql server cte语法
    GdiPlus[49]: 图像(一) 概览
    GdiPlus[51]: 图像(三) 关于呈现
    GdiPlus[47]: IGPMatrix 矩阵(二)
  • 原文地址:https://www.cnblogs.com/slgkaifa/p/7097287.html
Copyright © 2011-2022 走看看