結果

問題 No.2627 Unnatural Pitch
ユーザー 👑 rin204rin204
提出日時 2024-02-10 00:22:41
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 773 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 82,888 KB
実行使用メモリ 133,480 KB
最終ジャッジ日時 2024-09-28 16:44:28
合計ジャッジ時間 5,109 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,908 KB
testcase_01 AC 37 ms
53,620 KB
testcase_02 AC 36 ms
52,084 KB
testcase_03 AC 37 ms
53,556 KB
testcase_04 AC 166 ms
100,432 KB
testcase_05 AC 163 ms
100,428 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 196 ms
133,480 KB
testcase_10 AC 200 ms
133,476 KB
testcase_11 AC 53 ms
66,484 KB
testcase_12 AC 56 ms
67,472 KB
testcase_13 AC 39 ms
60,096 KB
testcase_14 AC 55 ms
68,076 KB
testcase_15 AC 47 ms
63,288 KB
testcase_16 AC 226 ms
104,240 KB
testcase_17 AC 257 ms
111,692 KB
testcase_18 AC 242 ms
101,948 KB
testcase_19 AC 251 ms
109,384 KB
testcase_20 AC 125 ms
86,820 KB
testcase_21 AC 144 ms
88,604 KB
testcase_22 AC 212 ms
99,224 KB
testcase_23 AC 140 ms
88,520 KB
testcase_24 AC 167 ms
94,000 KB
testcase_25 AC 178 ms
94,672 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 + l 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