結果

問題 No.2217 Suffix+
ユーザー rlangevinrlangevin
提出日時 2023-02-17 21:35:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 971 ms / 2,000 ms
コード長 1,312 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 117,436 KB
最終ジャッジ日時 2024-07-19 12:40:44
合計ジャッジ時間 13,418 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,736 KB
testcase_01 AC 35 ms
52,736 KB
testcase_02 AC 41 ms
58,752 KB
testcase_03 AC 36 ms
51,968 KB
testcase_04 AC 36 ms
52,608 KB
testcase_05 AC 36 ms
52,352 KB
testcase_06 AC 35 ms
52,096 KB
testcase_07 AC 35 ms
52,608 KB
testcase_08 AC 36 ms
52,352 KB
testcase_09 AC 34 ms
52,352 KB
testcase_10 AC 35 ms
52,608 KB
testcase_11 AC 34 ms
52,480 KB
testcase_12 AC 39 ms
52,480 KB
testcase_13 AC 36 ms
52,352 KB
testcase_14 AC 284 ms
86,912 KB
testcase_15 AC 282 ms
86,272 KB
testcase_16 AC 552 ms
97,980 KB
testcase_17 AC 340 ms
91,264 KB
testcase_18 AC 325 ms
88,740 KB
testcase_19 AC 874 ms
107,432 KB
testcase_20 AC 756 ms
103,532 KB
testcase_21 AC 166 ms
78,328 KB
testcase_22 AC 834 ms
106,328 KB
testcase_23 AC 602 ms
98,800 KB
testcase_24 AC 236 ms
101,820 KB
testcase_25 AC 208 ms
109,552 KB
testcase_26 AC 212 ms
107,120 KB
testcase_27 AC 216 ms
114,028 KB
testcase_28 AC 215 ms
107,628 KB
testcase_29 AC 724 ms
117,096 KB
testcase_30 AC 711 ms
117,104 KB
testcase_31 AC 715 ms
117,352 KB
testcase_32 AC 686 ms
116,332 KB
testcase_33 AC 725 ms
117,436 KB
testcase_34 AC 878 ms
111,356 KB
testcase_35 AC 37 ms
51,840 KB
testcase_36 AC 971 ms
117,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class Fenwick_Tree:
    def __init__(self, n):
        self._n = n
        self.data = [0] * n

    def add(self, p, x):
        assert 0 <= p < self._n
        p += 1
        while p <= self._n:
            self.data[p - 1] += x
            p += p & -p

    def sum(self, l, r):
        assert 0 <= l <= r <= self._n
        return self._sum(r) - self._sum(l)

    def _sum(self, r):
        s = 0
        while r > 0:
            s += self.data[r - 1]
            r -= r & -r
        return s
    
    def get(self, k):
        k += 1
        x, r = 0, 1
        while r < self._n:
            r <<= 1
        len = r
        while len:
            if x + len - 1 < self._n:
                if self.data[x + len - 1] < k:
                    k -= self.data[x + len - 1]
                    x += len
            len >>= 1
        return x

def check(m):
    T = Fenwick_Tree(N)
    cnt = 0
    for i in range(N):
        if A[i] >= m:
            continue
        s = T.sum(0, i + 1)
        v = max(0, (m - A[i] - s + i)//(i + 1))
        cnt += v 
        T.add(i, v * (i + 1))
    return cnt <= K

N, K = map(int, input().split())
A = list(map(int, input().split()))
yes = 0
no = 10 ** 15
while no - yes != 1:
    mid = (yes + no)//2
    if check(mid):
        yes = mid
    else:
        no = mid
print(yes)
0