結果

問題 No.615 集合に分けよう
ユーザー silopysilopy
提出日時 2019-07-06 01:58:34
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 371 bytes
コンパイル時間 589 ms
コンパイル使用メモリ 70,592 KB
実行使用メモリ 19,220 KB
最終ジャッジ日時 2024-09-22 14:43:30
合計ジャッジ時間 2,274 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
18,912 KB
testcase_01 AC 6 ms
18,952 KB
testcase_02 AC 6 ms
19,084 KB
testcase_03 AC 6 ms
19,204 KB
testcase_04 AC 6 ms
19,032 KB
testcase_05 AC 7 ms
19,040 KB
testcase_06 AC 8 ms
19,028 KB
testcase_07 AC 7 ms
19,140 KB
testcase_08 AC 7 ms
19,124 KB
testcase_09 AC 6 ms
19,040 KB
testcase_10 AC 7 ms
19,080 KB
testcase_11 AC 7 ms
19,044 KB
testcase_12 AC 7 ms
19,120 KB
testcase_13 AC 7 ms
19,136 KB
testcase_14 AC 7 ms
19,132 KB
testcase_15 AC 13 ms
19,184 KB
testcase_16 AC 37 ms
19,172 KB
testcase_17 AC 38 ms
19,084 KB
testcase_18 AC 38 ms
19,220 KB
testcase_19 AC 38 ms
19,196 KB
testcase_20 AC 38 ms
19,188 KB
testcase_21 AC 37 ms
19,116 KB
testcase_22 AC 38 ms
19,032 KB
testcase_23 AC 19 ms
19,072 KB
testcase_24 AC 35 ms
19,148 KB
testcase_25 AC 6 ms
19,108 KB
testcase_26 AC 6 ms
19,088 KB
testcase_27 AC 15 ms
19,180 KB
testcase_28 AC 16 ms
19,060 KB
testcase_29 AC 33 ms
18,924 KB
testcase_30 AC 33 ms
19,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<algorithm>
using namespace std;
using lint=int64_t;

int main()
{
	int N,K;
	lint a[1000010]={};

	cin >> N >> K;
	for(int i=0;i<N;i++)
		cin >> a[i];

	sort(a,a+N);
	lint sub[1000010]={};
	for(int i=0;i<N-1;i++)
		sub[i]=a[i+1]-a[i];
	sort(sub,sub+N-1);

	lint ans=0;
	for(int i=0;i<N-K;i++)
		ans+=sub[i];
	cout << ans << endl;
	return 0;
}
0