結果

問題 No.2548 Problem Selection
ユーザー forest3forest3
提出日時 2024-01-07 21:24:25
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 47 ms / 2,000 ms
コード長 500 bytes
コンパイル時間 1,412 ms
コンパイル使用メモリ 172,612 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-27 19:32:14
合計ジャッジ時間 3,079 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
5,248 KB
testcase_01 AC 11 ms
5,376 KB
testcase_02 AC 43 ms
5,376 KB
testcase_03 AC 6 ms
5,376 KB
testcase_04 AC 25 ms
5,376 KB
testcase_05 AC 41 ms
5,376 KB
testcase_06 AC 6 ms
6,940 KB
testcase_07 AC 31 ms
6,940 KB
testcase_08 AC 35 ms
6,940 KB
testcase_09 AC 37 ms
6,944 KB
testcase_10 AC 43 ms
6,944 KB
testcase_11 AC 46 ms
6,944 KB
testcase_12 AC 47 ms
6,940 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 1 ms
6,940 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 1 ms
6,940 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 1 ms
6,940 KB
testcase_23 AC 2 ms
6,944 KB
testcase_24 AC 1 ms
6,940 KB
testcase_25 AC 1 ms
6,944 KB
testcase_26 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#define rep(i, n) for( ll i = 0; i < n; i++ )
using ll = long long;

int main() {
	int N, M;
	cin >> N >> M;
	vector<ll> a( N );
	rep(i, N) cin >> a[i];
	sort(a.begin(), a.end());
	ll ans = 0, b;
	rep(i, M - 1) {
		ll d = a[i + 1] - a[i];
		ans += d * d;
	}
	b = ans;
	for( int i = M - 1; i + 1 < N; i++ ) {
		int j = i - M + 1;
		ll d = a[j + 1] - a[j];
		b -= d * d;
		d = a[i + 1] - a[i];
		b += d * d;
		ans = min(ans, b);
	}
	cout << ans << endl;
}
0