結果
| 問題 |
No.2548 Problem Selection
|
| コンテスト | |
| ユーザー |
forest3
|
| 提出日時 | 2024-01-07 21:24:25 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.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 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 25 |
ソースコード
#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;
}
forest3