結果

問題 No.2627 Unnatural Pitch
ユーザー 👑 AngrySadEightAngrySadEight
提出日時 2024-02-04 12:18:26
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 505 ms / 4,000 ms
コード長 1,772 bytes
コンパイル時間 1,216 ms
コンパイル使用メモリ 87,704 KB
実行使用メモリ 70,400 KB
最終ジャッジ日時 2024-09-28 11:14:06
合計ジャッジ時間 8,947 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 391 ms
56,320 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 503 ms
70,400 KB
testcase_05 AC 505 ms
70,400 KB
testcase_06 AC 397 ms
45,440 KB
testcase_07 AC 83 ms
5,376 KB
testcase_08 AC 149 ms
17,280 KB
testcase_09 AC 482 ms
57,984 KB
testcase_10 AC 451 ms
57,984 KB
testcase_11 AC 4 ms
5,376 KB
testcase_12 AC 4 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 3 ms
5,376 KB
testcase_15 AC 3 ms
5,376 KB
testcase_16 AC 281 ms
28,544 KB
testcase_17 AC 475 ms
62,080 KB
testcase_18 AC 234 ms
21,504 KB
testcase_19 AC 368 ms
41,728 KB
testcase_20 AC 98 ms
14,336 KB
testcase_21 AC 319 ms
48,768 KB
testcase_22 AC 425 ms
59,648 KB
testcase_23 AC 294 ms
45,568 KB
testcase_24 AC 158 ms
19,200 KB
testcase_25 AC 310 ms
44,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <map>
#include <vector>
using namespace std;
using ll = long long;

int main() {
    ll N, K, L, U;
    cin >> N >> K >> L >> U;
    vector<ll> A(N);
    for (ll i = 0; i < N; i++) {
        cin >> A[i];
    }
    ll diffs = U - L;
    // 「L より小さいものの個数」 <= 「U より大きいものの個数」
    ll ok = 0;
    ll ng = 1000000000002;
    while (ng - ok > 1) {
        ll mid = (ok + ng) / 2;
        ll lower = 0;
        ll upper = 0;
        for (ll i = 0; i < N; i++) {
            if (A[i] < mid) {
                lower++;
            }
            if (A[i] > mid + diffs) {
                upper++;
            }
        }
        if (lower <= upper) {
            ok = mid;
        } else {
            ng = mid;
        }
    }
    map<ll, ll> mp;
    for (ll i = 0; i < N; i++) {
        mp[A[i]]++;
    }
    ll ans = 1000000000000000002;

    ll now_score = 0;
    ll now_L = ok - K;
    ll now_U = now_L + diffs;

    vector<ll> left_rem(K, 0);   // 左側の値の余り
    vector<ll> right_rem(K, 0);  // 右側の値の余り
    for (ll i = 0; i < N; i++) {
        if (A[i] < now_L) {
            now_score += ((now_L - A[i] + K - 1) / K);
            left_rem[A[i] % K]++;
        }
        if (A[i] > now_U) {
            now_score += ((A[i] - now_U + K - 1) / K);
            right_rem[A[i] % K]++;
        }
    }
    ans = min(ans, now_score);
    for (ll i = 0; i < 2 * K; i++) {
        left_rem[(now_L % K + K) % K] += mp[now_L];
        now_score += left_rem[(now_L % K + K) % K];
        now_L++;
        now_U++;
        now_score -= right_rem[(now_U % K + K) % K];
        right_rem[(now_U % K + K) % K] -= mp[now_U];
        ans = min(ans, now_score);
    }
    cout << ans << endl;
}
0