結果

問題 No.2548 Problem Selection
ユーザー Hydrogen332Hydrogen332
提出日時 2024-10-28 01:32:00
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 739 bytes
コンパイル時間 2,476 ms
コンパイル使用メモリ 206,644 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-28 01:32:05
合計ジャッジ時間 4,779 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
6,816 KB
testcase_01 AC 13 ms
6,820 KB
testcase_02 AC 46 ms
6,820 KB
testcase_03 AC 6 ms
6,816 KB
testcase_04 AC 29 ms
6,816 KB
testcase_05 AC 45 ms
6,816 KB
testcase_06 AC 7 ms
6,816 KB
testcase_07 AC 34 ms
6,820 KB
testcase_08 AC 38 ms
6,816 KB
testcase_09 AC 40 ms
6,820 KB
testcase_10 AC 48 ms
6,816 KB
testcase_11 AC 48 ms
6,816 KB
testcase_12 AC 48 ms
6,816 KB
testcase_13 WA -
testcase_14 AC 2 ms
6,816 KB
testcase_15 AC 2 ms
6,820 KB
testcase_16 AC 2 ms
6,820 KB
testcase_17 WA -
testcase_18 AC 2 ms
6,816 KB
testcase_19 AC 2 ms
6,820 KB
testcase_20 AC 2 ms
6,816 KB
testcase_21 AC 2 ms
6,820 KB
testcase_22 AC 2 ms
6,816 KB
testcase_23 AC 2 ms
6,816 KB
testcase_24 AC 2 ms
6,816 KB
testcase_25 AC 2 ms
6,820 KB
testcase_26 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i, s, e) for (int i = (int)s; i < (int)e; ++i)
#define all(a) (a).begin(), (a).end()

const ll mod = 1e9 + 7;

int main() {
    cin.tie(nullptr);
    
    int N, M;
    cin >> N >> M;
    vector<ll> A(N);
    rep(i, 0, N) cin >> A[i];

    if (N == 1) {
        cout << 0 << '\n';
        return 0;
    }
    
    sort(all(A));
    
    vector<ll> S(N - 1);
    rep(i, 0, N - 1) S[i] = (A[i + 1] - A[i])*(A[i + 1] - A[i]);
    rep(i, 1, N - 1) S[i] += S[i - 1];
    
    ll ans = LLONG_MAX;
    rep(i, 0, N - M + 1) {
        if (i == 0) ans = min(ans, S[i + M - 1]);
        else ans = min(ans, S[i + M - 2] - S[i - 1]);
    }
    
    cout << ans << '\n';
}
0