1125 Chain the Ropes
Posted kkmjy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了1125 Chain the Ropes相关的知识,希望对你有一定的参考价值。
题意:略。
思路:思考一下,最先拿去对折的绳子会参与之后的每次对折,而对一条绳子而言,对折的次数越多剩下的就越短,因此,要让最终的结果尽可能长,应该先让较短的绳子先对折。
代码:
#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的主要内容,如果未能解决你的问题,请参考以下文章
1125 Chain the Ropes (25 分)难度: 一般 / 贪心 哈夫曼树
SDNU 1125.Let the Balloon Rise
java.security.cert.CertPathValidatorException: Path does not chain with any of the trust anchors(代码片