代码拉取完成,页面将自动刷新
# -*- coding: utf-8 -*-
# @project : 《Atcoder》
# @Author : created by bensonrachel on 2021/6/22
# @File : C - Traveling Salesman around Lake.py
K, N = list(map(int,input().split()))
rate = [int(i) for i in input().split()]
char = []
for i in range(len(rate)-1):
char.append(rate[i+1]-rate[i])
a = rate[-1]-rate[0]
char.append(K-a)
max_num = max(char)
print(K-max_num)
"""
基本思想:
找出环上所有相邻点之间距离的最大值,然后用K减去这个最大值即为答案。
the minimum distance that needs to be traveled when you start at one of the houses and visit all the N houses.
其中,第一个点和最后一个点的距离怎么求呢,用最后一个点的值减去第一个点的值,再用K减去这个值即为“第一个点和最后一个点的距离”
https://atcoder.jp/contests/abc160/tasks/abc160_c
"""
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。