목차

센서

ps
링크acmicpc.net/…
출처BOJ
문제 번호2212
문제명센서
레벨골드 5
분류

그리디

시간복잡도O(nlogn)
인풋사이즈n<=10000
사용한 언어Python
제출기록30864KB / 72ms
최고기록56ms
해결날짜2022/01/27

풀이

코드

"""Solution code for "BOJ 2212. 센서".

- Problem link: https://www.acmicpc.net/problem/2212
- Solution link: http://www.teferi.net/ps/problems/boj/2212

Tags: [Greedy]
"""

import itertools


def main():
    N = int(input())
    K = int(input())
    censors = [int(x) for x in input().split()]

    diffs = [b - a for a, b in itertools.pairwise(sorted(censors))]
    print(sum(sorted(diffs)[:N - K]))


if __name__ == '__main__':
    main()