結果

問題 No.2627 Unnatural Pitch
ユーザー 👑 rin204rin204
提出日時 2024-02-10 00:25:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 237 ms / 4,000 ms
コード長 773 bytes
コンパイル時間 272 ms
コンパイル使用メモリ 82,604 KB
実行使用メモリ 133,824 KB
最終ジャッジ日時 2024-09-28 16:44:33
合計ジャッジ時間 4,484 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,620 KB
testcase_01 AC 31 ms
53,576 KB
testcase_02 AC 30 ms
53,552 KB
testcase_03 AC 31 ms
53,376 KB
testcase_04 AC 149 ms
100,424 KB
testcase_05 AC 152 ms
100,688 KB
testcase_06 AC 129 ms
107,428 KB
testcase_07 AC 127 ms
107,264 KB
testcase_08 AC 133 ms
107,992 KB
testcase_09 AC 181 ms
133,784 KB
testcase_10 AC 183 ms
133,824 KB
testcase_11 AC 48 ms
65,876 KB
testcase_12 AC 53 ms
67,644 KB
testcase_13 AC 39 ms
59,556 KB
testcase_14 AC 52 ms
66,332 KB
testcase_15 AC 47 ms
63,044 KB
testcase_16 AC 210 ms
104,372 KB
testcase_17 AC 237 ms
111,676 KB
testcase_18 AC 229 ms
101,952 KB
testcase_19 AC 230 ms
109,256 KB
testcase_20 AC 120 ms
87,232 KB
testcase_21 AC 135 ms
88,656 KB
testcase_22 AC 198 ms
99,324 KB
testcase_23 AC 130 ms
88,312 KB
testcase_24 AC 151 ms
93,884 KB
testcase_25 AC 162 ms
94,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k, L, U = map(int, input().split())
A = list(map(int, input().split()))
l = -(1 << 60)
r = 1 << 60
while r - l > 1:
    mid = (l + r) // 2
    c = 0
    for a in A:
        x = a + mid
        if x < L:
            c += 1
        elif x + k >= U:
            c -= 1
    if c > 0:
        l = mid
    else:
        r = mid

A = [a + r for a in A]
tot = 0
add = {}
for a in A:
    if a < L:
        tot += (L - a + k - 1) // k
        x = (L - a) % k
        if x == 0:
            x = k
        add[x] = add.get(x, 0) - 1
    elif a + k > U:
        tot += (a - U + k - 1) // k
        x = (U - a + 1) % k
        if x == 0:
            x = k
        add[x] = add.get(x, 0) + 1

ans = tot
for k in sorted(add.keys()):
    tot += add[k]
    ans = min(ans, tot)
print(ans)
0