博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
poj3632
阅读量:5236 次
发布时间:2019-06-14

本文共 1005 字,大约阅读时间需要 3 分钟。

1.链接地址

2.问题描述

 When shopping on Long Street, Michael usually parks his car at some random location, and then walks to the stores he needs. Can you help Michael choose a place to park which minimises the distance he needs to walk on his shopping round? Long Street is a straight line, where all positions are integer. You pay for parking in a specific slot, which is an integer position on Long Street. Michael does not want to pay for more than one parking though. He is very strong, and does not mind carrying all the bags around.

输入样例

2424 13 89 3767 30 41 14 39 42

输出样例

15270

3.解题思路

排序找中间点即可。。。

4.算法实现源代码

#include 
#include
#include
using namespace std;int num[20];int main(){ int n,cases; cin>>n; for(int i=0;i
>cases; for(int j=0;j
>num[j]; } sort(num,num+cases); cout<<2*(num[cases-1]-num[0])<

 

转载于:https://www.cnblogs.com/KasenBob/p/11177026.html

你可能感兴趣的文章
linux查看端口占用
查看>>
知识不是来炫耀的,而是来分享的-----现在的人们却…似乎开始变味了…
查看>>
CSS背景颜色、背景图片、平铺、定位、固定
查看>>
口胡:[HNOI2011]数学作业
查看>>
中国剩余定理
查看>>
uva 10137 The trip
查看>>
数据库锁机制及乐观锁,悲观锁的并发控制
查看>>
03 线程池
查看>>
201771010125王瑜《面向对象程序设计(Java)》第十三周学习总结
查看>>
手机验证码执行流程
查看>>
python 基础 ----- 变量
查看>>
设计模式课程 设计模式精讲 2-2 UML类图讲解
查看>>
Silverlight 的菜单控件。(不是 Toolkit的)
查看>>
初识lua
查看>>
我是插件狂人,jDuang,jValidator,jModal,jGallery
查看>>
张季跃 201771010139《面向对象程序设计(java)》第四周学习总结
查看>>
如何解除循环引用
查看>>
android中fragment的使用及与activity之间的通信
查看>>
jquery的contains方法
查看>>
python3--算法基础:二分查找/折半查找
查看>>