码迷,mamicode.com
首页 > 其他好文 > 详细

1125 Chain the Ropes

时间:2018-09-02 18:36:52      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:algorithm   return   namespace   turn   style   思路   max   print   amp   

题意:略。

思路:思考一下,最先拿去对折的绳子会参与之后的每次对折,而对一条绳子而言,对折的次数越多剩下的就越短,因此,要让最终的结果尽可能长,应该先让较短的绳子先对折。

代码:

#include <cstdio>
#include <algorithm>
using namespace std;
const int maxn=10005;
int segment[maxn];

int main()
{
    int n;
    scanf("%d",&n);
    for(int i=0;i<n;i++)
        scanf("%d",&segment[i]);
    sort(segment,segment+n);
    int ans=segment[0];
    for(int i=1;i<n;i++)
        ans=(ans+segment[i])/2;
    printf("%d",ans);
    return 0;
}

 

1125 Chain the Ropes

标签:algorithm   return   namespace   turn   style   思路   max   print   amp   

原文地址:https://www.cnblogs.com/kkmjy/p/9574488.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!