結果

問題 No.2627 Unnatural Pitch
ユーザー 👑 AngrySadEightAngrySadEight
提出日時 2024-02-04 13:22:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 474 ms / 4,000 ms
コード長 1,155 bytes
コンパイル時間 590 ms
コンパイル使用メモリ 82,156 KB
実行使用メモリ 260,876 KB
最終ジャッジ日時 2024-09-28 11:14:32
合計ジャッジ時間 8,058 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,632 KB
testcase_01 AC 43 ms
53,632 KB
testcase_02 AC 204 ms
201,984 KB
testcase_03 AC 46 ms
54,016 KB
testcase_04 AC 443 ms
260,876 KB
testcase_05 AC 434 ms
260,676 KB
testcase_06 AC 288 ms
193,160 KB
testcase_07 AC 171 ms
100,440 KB
testcase_08 AC 198 ms
129,964 KB
testcase_09 AC 384 ms
240,972 KB
testcase_10 AC 388 ms
240,860 KB
testcase_11 AC 75 ms
72,320 KB
testcase_12 AC 89 ms
77,060 KB
testcase_13 AC 48 ms
59,776 KB
testcase_14 AC 74 ms
71,936 KB
testcase_15 AC 73 ms
71,552 KB
testcase_16 AC 313 ms
163,308 KB
testcase_17 AC 474 ms
256,196 KB
testcase_18 AC 303 ms
142,848 KB
testcase_19 AC 396 ms
195,848 KB
testcase_20 AC 176 ms
100,760 KB
testcase_21 AC 339 ms
193,440 KB
testcase_22 AC 426 ms
216,364 KB
testcase_23 AC 301 ms
181,364 KB
testcase_24 AC 224 ms
112,904 KB
testcase_25 AC 364 ms
181,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

N, K, L, U = map(int, input().split())
A = list(map(int, input().split()))

diffs = U - L
ok = 0
ng = 1000000000000002

while ng - ok > 1:
    mid = (ok + ng) // 2
    lower = 0
    upper = 0
    for i in range(N):
        if A[i] < mid:
            lower += 1
        elif A[i] > mid + diffs:
            upper += 1
    if lower <= upper:
        ok = mid
    else:
        ng = mid

d = defaultdict(int)
for i in range(N):
    d[A[i]] += 1

ans = 10 ** 18 + 2

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

left_rem = [0 for _ in range(K)]
right_rem = [0 for _ in range(K)]

for i in range(N):
    if A[i] < now_L:
        now_score += (now_L - A[i] + K - 1) // K
        left_rem[A[i] % K] += 1
    if A[i] > now_U:
        now_score += (A[i] - now_U + K - 1) // K
        right_rem[A[i] % K] += 1

ans = min(ans, now_score)

for i in range(2 * K):
    left_rem[(now_L % K + K) % K] += d[now_L]
    now_score += left_rem[(now_L % K + K) % K]
    now_L += 1
    now_U += 1
    now_score -= right_rem[(now_U % K + K) % K]
    right_rem[(now_U % K + K) % K] -= d[now_U]
    ans = min(ans, now_score)

print(ans)
0