ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

1.28号英语翻译

2022-01-29 01:03:53  阅读:237  来源: 互联网

标签:office 邮局 villages 1.28 村庄 英语翻译 village post


题目来源:http://noi.openjudge.cn/ch0206/162/

重点词汇:

axis:n,轴;

coordinate:n.坐标,v.协调,配合;

standard :adj.标准的;

162:Post Office

总时间限制: 
1000ms
 
内存限制: 
65536kB
描述
There is a straight highway with villages alongside the highway. The highway is represented as an integer axis, and the position of each village is identified with a single integer coordinate. There are no two villages in the same position. The distance between two positions is the absolute value of the difference of their integer coordinates.
Post offices will be built in some, but not necessarily all of the villages. A village and the post office in it have the same position. For building the post offices, their positions should be chosen so that the total sum of all distances between each village and its nearest post office is minimum.
You are to write a program which, given the positions of the villages and the number of post offices, computes the least possible sum of all distances between each village and its nearest post office.
有一条笔直的公路,公路旁有村庄。 高速公路用整数轴表示,每个村庄的位置用一个整数坐标标识。 没有两个村庄处于同一位置。 两个位置之间的距离是它们整数坐标差的绝对值。
邮局将建在一些村庄,但不一定是所有村庄。 一个村庄和其中的邮局位置相同。对于 建立邮局,应选择其位置,以便使每个村庄与其最近的邮局之间的所有距离总和最小。
你需要编写一个程序,给你村庄的位置和邮局的数量,计算出每个村庄与其最近的邮局之间所有距离的最小可能总和。  

 

输入
Your program is to read from standard input. The first line contains two integers: the first is the number of villages V, 1 <= V <= 300, and the second is the number of post offices P, 1 <= P <= 30, P <= V. The second line contains V integers in increasing order. These V integers are the positions of the villages. For each position X it holds that 1 <= X <= 10000.
你的程序是从标准输入中读取的。 第一行包含两个整数:第一行是村庄的数量  V,1 <= V <= 300,第二行是邮局的数量  P,1 <= P <= 30,P <= V。 第二行包含 V 个递增顺序的整数。 这些 V 整数是村庄的位置。 对于每个位置 X,它认为 1 <= X <= 10000。
输出
The first line contains one integer S, which is the sum of all distances between each village and its nearest post office.
这第一行包括一个整数 S ,表示每个村庄与其最近的邮局之间距离的总和。
样例输入
10 5
1 2 3 6 7 9 11 22 44 50
样例输出
9
来源
IOI 2000

标签:office,邮局,villages,1.28,村庄,英语翻译,village,post
来源: https://www.cnblogs.com/qq-2556146261/p/15854174.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有