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;
    }


  • 相关阅读:
    除了类 Excel, SpreadJS 表格控件还能为系统开发带来什么价值?
    纯前端表格控件SpreadJS V14.0发布:组件化编辑器+数据透视表
    攻克金融系统开发难点,借助SpreadJS实现在线导入Excel自定义报表
    50.Pyinstaller打包时出现:UnicodeDecodeError: 'utf-8' codec can't decode byte 0xce...
    centos 查看日志
    TP5.1 控制器(基类)
    tp5.1 微信支付、支付宝、招商支付(Payment)
    TP5.1 发送邮件
    tp5.1 模型集成
    TP5.1 阿里云短信
  • 原文地址:https://www.cnblogs.com/slgkaifa/p/7097287.html
Copyright © 2011-2022 走看看