結果

問題 No.2548 Problem Selection
ユーザー forest3forest3
提出日時 2024-01-07 21:24:25
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 51 ms / 2,000 ms
コード長 500 bytes
コンパイル時間 2,617 ms
コンパイル使用メモリ 172,780 KB
実行使用メモリ 6,676 KB
最終ジャッジ日時 2024-01-07 21:24:30
合計ジャッジ時間 4,371 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
6,676 KB
testcase_01 AC 13 ms
6,676 KB
testcase_02 AC 47 ms
6,676 KB
testcase_03 AC 6 ms
6,676 KB
testcase_04 AC 29 ms
6,676 KB
testcase_05 AC 46 ms
6,676 KB
testcase_06 AC 7 ms
6,676 KB
testcase_07 AC 34 ms
6,676 KB
testcase_08 AC 38 ms
6,676 KB
testcase_09 AC 41 ms
6,676 KB
testcase_10 AC 49 ms
6,676 KB
testcase_11 AC 48 ms
6,676 KB
testcase_12 AC 51 ms
6,676 KB
testcase_13 AC 2 ms
6,676 KB
testcase_14 AC 2 ms
6,676 KB
testcase_15 AC 2 ms
6,676 KB
testcase_16 AC 2 ms
6,676 KB
testcase_17 AC 2 ms
6,676 KB
testcase_18 AC 2 ms
6,676 KB
testcase_19 AC 2 ms
6,676 KB
testcase_20 AC 2 ms
6,676 KB
testcase_21 AC 2 ms
6,676 KB
testcase_22 AC 2 ms
6,676 KB
testcase_23 AC 2 ms
6,676 KB
testcase_24 AC 2 ms
6,676 KB
testcase_25 AC 2 ms
6,676 KB
testcase_26 AC 2 ms
6,676 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