結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,752 KB
testcase_01 AC 32 ms
10,752 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 31 ms
10,624 KB
testcase_05 AC 30 ms
10,624 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 31 ms
10,752 KB
testcase_08 AC 31 ms
10,624 KB
testcase_09 AC 31 ms
10,752 KB
testcase_10 AC 30 ms
10,880 KB
testcase_11 AC 30 ms
10,752 KB
testcase_12 AC 30 ms
10,752 KB
testcase_13 AC 31 ms
10,752 KB
testcase_14 AC 31 ms
10,752 KB
testcase_15 AC 34 ms
11,888 KB
testcase_16 AC 30 ms
10,752 KB
testcase_17 AC 52 ms
16,336 KB
testcase_18 AC 129 ms
20,052 KB
testcase_19 AC 135 ms
20,160 KB
testcase_20 AC 150 ms
19,928 KB
testcase_21 AC 170 ms
20,568 KB
testcase_22 AC 187 ms
21,328 KB
testcase_23 AC 74 ms
16,960 KB
testcase_24 AC 114 ms
19,704 KB
testcase_25 AC 30 ms
10,624 KB
testcase_26 AC 30 ms
10,624 KB
testcase_27 AC 42 ms
11,776 KB
testcase_28 AC 43 ms
11,776 KB
testcase_29 AC 52 ms
16,124 KB
testcase_30 AC 81 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