結果

問題 No.2404 Vertical Throw Up
ユーザー gr1msl3ygr1msl3y
提出日時 2023-08-14 11:53:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 540 ms / 2,000 ms
コード長 2,877 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 81,988 KB
実行使用メモリ 94,404 KB
最終ジャッジ日時 2024-11-22 08:43:08
合計ジャッジ時間 7,139 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,864 KB
testcase_01 AC 42 ms
52,608 KB
testcase_02 AC 43 ms
52,480 KB
testcase_03 AC 459 ms
90,988 KB
testcase_04 AC 414 ms
87,860 KB
testcase_05 AC 540 ms
94,216 KB
testcase_06 AC 52 ms
60,800 KB
testcase_07 AC 537 ms
94,404 KB
testcase_08 AC 449 ms
91,000 KB
testcase_09 AC 399 ms
87,292 KB
testcase_10 AC 198 ms
79,716 KB
testcase_11 AC 205 ms
79,340 KB
testcase_12 AC 194 ms
78,776 KB
testcase_13 AC 66 ms
66,048 KB
testcase_14 AC 79 ms
72,192 KB
testcase_15 AC 73 ms
69,376 KB
testcase_16 AC 66 ms
67,584 KB
testcase_17 AC 80 ms
72,576 KB
testcase_18 AC 84 ms
73,984 KB
testcase_19 AC 67 ms
66,304 KB
testcase_20 AC 65 ms
66,432 KB
testcase_21 AC 80 ms
73,600 KB
testcase_22 AC 66 ms
67,328 KB
testcase_23 AC 62 ms
65,408 KB
testcase_24 AC 77 ms
72,192 KB
testcase_25 AC 58 ms
63,744 KB
testcase_26 AC 79 ms
70,272 KB
testcase_27 AC 76 ms
71,168 KB
testcase_28 AC 59 ms
63,360 KB
testcase_29 AC 54 ms
61,696 KB
testcase_30 AC 52 ms
60,288 KB
testcase_31 AC 63 ms
65,792 KB
testcase_32 AC 53 ms
61,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left


class Bit:
    def __init__(self, n):
        self.size = n
        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 sumrange(self, i, j):
        si = self.sum(i - 1)
        sj = self.sum(j)
        return sj - si

    def add(self, i, x):
        i += 1
        while i <= self.size:
            self.tree[i] += x
            i += i & -i

    def lower_bound(self, w):
        if w <= 0:
            return 0
        x = 0
        r = 1 << (self.size).bit_length()
        while r > 0:
            if x+r < self.size and self.tree[x+r] < w:
                w -= self.tree[x+r]
                x += r
            r = r >> 1
        return x


Ga = int(input())
Q = int(input())
query = [list(map(int, input().split())) for _ in range(Q)]
lines = [[-1, -10**9]]
for q in query:
    if len(q) == 3:
        s, t = q[1:]
        lines.append([s+t, -s*t])
lines.sort()


def isneed(ismax, f1, f2, f3):
    va = (f3[1]-f2[1])*(f2[0]-f1[0])
    vb = (f2[1]-f1[1])*(f3[0]-f2[0])
    if ismax:
        return va < vb
    else:
        return va > vb


def f(ind, t):
    b, c = lines[ind]
    return t*b+c


state = Bit(Q+2)
state.add(0, 1)
ans = []
ct = 1
for q in query:
    if q[0] == 1:
        s, t = q[1:]
        b, c = s+t, -s*t
        ind = bisect_left(lines, [b, c])
        w = state.sum(ind-1)
        if 0 < w < ct:
            indl = state.lower_bound(w)
            indr = state.lower_bound(w+1)
            if not isneed(1, lines[indl], lines[ind], lines[indr]):
                continue
        state.add(ind, 1)
        ct += 1
        while w+2 < ct:
            indr0 = state.lower_bound(w+2)
            indr1 = state.lower_bound(w+3)
            if not isneed(1, lines[ind], lines[indr0], lines[indr1]):
                state.add(indr0, -1)
                ct -= 1
            else:
                break
        while 1 < w:
            indl0 = state.lower_bound(w-1)
            indl1 = state.lower_bound(w)
            if not isneed(1, lines[indl0], lines[indl1], lines[ind]):
                state.add(indl1, -1)
                ct -= 1
                w -= 1
            else:
                break
    else:
        t = q[1]
        res = 0
        if ct == 1:
            ind = state.lower_bound(1)
            res = f(ind, t)
        else:
            ind0 = state.lower_bound(1)
            res = f(ind0, t)
            while ct > 1:
                ind1 = state.lower_bound(2)
                res1 = f(ind1, t)
                if res < res1:
                    state.add(ind0, -1)
                    ind0 = ind1
                    res = res1
                    ct -= 1
                else:
                    break
        ans.append(max(0, (-t**2+res)*Ga))

print(*ans, sep='\n')
0