結果

問題 No.2217 Suffix+
ユーザー もちふわゆるゆるもちふわゆるゆる
提出日時 2023-02-18 23:40:00
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 2,016 bytes
コンパイル時間 535 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 133,744 KB
最終ジャッジ日時 2024-07-20 06:04:35
合計ジャッジ時間 14,218 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
65,536 KB
testcase_01 AC 43 ms
57,472 KB
testcase_02 AC 52 ms
63,872 KB
testcase_03 AC 40 ms
53,248 KB
testcase_04 AC 45 ms
52,992 KB
testcase_05 AC 45 ms
58,112 KB
testcase_06 AC 41 ms
52,992 KB
testcase_07 AC 43 ms
57,472 KB
testcase_08 AC 50 ms
59,520 KB
testcase_09 AC 45 ms
57,344 KB
testcase_10 AC 45 ms
59,392 KB
testcase_11 AC 44 ms
58,624 KB
testcase_12 AC 43 ms
57,984 KB
testcase_13 AC 44 ms
53,120 KB
testcase_14 AC 1,304 ms
99,072 KB
testcase_15 AC 1,324 ms
99,548 KB
testcase_16 TLE -
testcase_17 AC 1,899 ms
111,508 KB
testcase_18 AC 1,620 ms
105,344 KB
testcase_19 TLE -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, math
input = lambda: sys.stdin.readline()[:-1]
def MI(): return map(int, input().split())
inf = 10**18

class BIT:
    def __init__(self, n):
        self.size = n
        self.n0 = 1 << (n.bit_length() - 1)
        self.tree = [0] * (n + 1)
        
    def sum(self, i):
        i += 1
        s = 0
        while i > 0:
            s += self.tree[i]
            i -= i & -i
        return s
        
    def add(self, i, x):
        i += 1
        while i <= self.size:
            self.tree[i] += x
            i += i & -i
    
    def range_sum(self, l, r):
        return self.sum(r - 1) - self.sum(l - 1)
    
    def get(self, i):
        return self.sum(i) - self.sum(i - 1)
    
    def lower_bound(self, x):
        pos = 0
        plus = self.n0
        while plus > 0:
            if pos + plus <= self.size and self.tree[pos + plus] < x:
                x -= self.tree[pos + plus]
                pos += plus
            plus //= 2
        return pos

# https://ikatakos.com/pot/programming_algorithm/data_structure/binary_indexed_tree
# 区間加算 / 区間和
class RangeUpdate:
    def __init__(self, n):
        self.p = BIT(n)
        self.q = BIT(n)
     
    def add(self, l, r, x):
        self.p.add(l, -x * (l-1))
        self.p.add(r-1, x * (r-1))
        self.q.add(l, x)
        self.q.add(r-1, -x)
     
    def get_sum(self, l, r):
        sum_p = self.p.sum(r-1) + self.q.sum(r-1) * (r-1)
        sum_q = self.p.sum(l-1) + self.q.sum(l-1) * (l-1)
        return sum_p - sum_q

n,k = MI()
a = list(MI())

def isok(mid):
    bit = RangeUpdate(n)
    for i in range(n):
        bit.add(i, i+1, a[i])

    cnt = 0
    for left in range(n):
        mn = bit.get_sum(left, left+1)
        if mn<mid:
            tmp = -(-(mid-mn)//(left+1))
            cnt += tmp
            bit.add(left, n, (left+1)*tmp)
    
    if cnt<=k:
        return True
    else: return False

l,r = -1, 2*10**15
while abs(l-r)>1:
    mid = (l+r)//2
    if isok(mid): l = mid
    else: r = mid
print(l)
0