0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

ABC115 C - Christmas Eve を楽しんだ

Posted at

abc115_1.png
abc115_2.png
abc115_3.png

hmax, hmin の差を min にするのであれば、
木を並べ直した方が良いと思った。

次に k 本ずつ hmax - hmin の差が最小になる組み合わせを探した。

ChristmasEve.py
n,k = map(int,input().split())
H = []
for _ in range(n):
    h = int(input())
    H.append(h)
H.sort()
ans = float("inf")
score = 0
for i in range(n-(k-1)):
    score = H[i+k-1]-H[i]
    if ans > score:
        ans = score
print(ans)
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?