結果

問題 No.615 集合に分けよう
ユーザー GrayCoderGrayCoder
提出日時 2017-12-16 03:06:03
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 196 ms / 2,000 ms
コード長 559 bytes
コンパイル時間 88 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,340 KB
最終ジャッジ日時 2024-05-08 12:53:50
合計ジャッジ時間 3,028 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,880 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 32 ms
10,752 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 31 ms
10,880 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 29 ms
10,752 KB
testcase_10 AC 30 ms
10,752 KB
testcase_11 AC 30 ms
10,880 KB
testcase_12 AC 30 ms
10,752 KB
testcase_13 AC 30 ms
10,752 KB
testcase_14 AC 31 ms
10,880 KB
testcase_15 AC 36 ms
11,768 KB
testcase_16 AC 30 ms
10,752 KB
testcase_17 AC 52 ms
16,332 KB
testcase_18 AC 144 ms
20,308 KB
testcase_19 AC 138 ms
20,160 KB
testcase_20 AC 152 ms
20,188 KB
testcase_21 AC 169 ms
20,564 KB
testcase_22 AC 196 ms
21,340 KB
testcase_23 AC 74 ms
16,836 KB
testcase_24 AC 122 ms
19,816 KB
testcase_25 AC 30 ms
10,752 KB
testcase_26 AC 30 ms
10,752 KB
testcase_27 AC 41 ms
11,776 KB
testcase_28 AC 42 ms
11,648 KB
testcase_29 AC 50 ms
16,252 KB
testcase_30 AC 79 ms
18,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    N, K = map(int, input().split())
    if N == K:
        print(0)
        exit()
    A = tuple(map(int, input().split()))
    if K == 1:
        print(max(A) - min(A))
        exit()

    a = sorted(A)
    slice_ = [0] * (N - 1)
    for i in range(1, N):
        slice_[i-1] = (a[i] - a[i-1], i)
    slice_.sort(reverse=True)

    splt = sorted(slice_[:K-1], key=lambda x: x[1])
    s = 0
    total = 0
    for _, e in splt:
        total += max(a[s:e]) - min(a[s:e])
        s = e
    total += max(a[s:]) - min(a[s:])
    print(total)

main()
0