結果

問題 No.449 ゆきこーだーの雨と雪 (4)
ユーザー convexineqconvexineq
提出日時 2021-02-09 06:04:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 668 ms / 5,000 ms
コード長 1,651 bytes
コンパイル時間 349 ms
コンパイル使用メモリ 82,332 KB
実行使用メモリ 128,692 KB
最終ジャッジ日時 2024-07-06 12:00:57
合計ジャッジ時間 22,973 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,144 KB
testcase_01 AC 41 ms
53,376 KB
testcase_02 AC 40 ms
54,016 KB
testcase_03 AC 72 ms
68,096 KB
testcase_04 AC 70 ms
67,456 KB
testcase_05 AC 73 ms
68,608 KB
testcase_06 AC 65 ms
66,816 KB
testcase_07 AC 70 ms
67,840 KB
testcase_08 AC 67 ms
66,944 KB
testcase_09 AC 69 ms
67,928 KB
testcase_10 AC 63 ms
65,920 KB
testcase_11 AC 69 ms
66,816 KB
testcase_12 AC 622 ms
124,056 KB
testcase_13 AC 583 ms
120,188 KB
testcase_14 AC 536 ms
105,928 KB
testcase_15 AC 639 ms
128,692 KB
testcase_16 AC 576 ms
116,556 KB
testcase_17 AC 548 ms
116,116 KB
testcase_18 AC 668 ms
123,732 KB
testcase_19 AC 542 ms
107,628 KB
testcase_20 AC 540 ms
105,916 KB
testcase_21 AC 573 ms
119,152 KB
testcase_22 AC 645 ms
119,872 KB
testcase_23 AC 660 ms
119,600 KB
testcase_24 AC 554 ms
112,356 KB
testcase_25 AC 624 ms
106,892 KB
testcase_26 AC 549 ms
94,660 KB
testcase_27 AC 594 ms
119,016 KB
testcase_28 AC 599 ms
119,196 KB
testcase_29 AC 559 ms
107,580 KB
testcase_30 AC 622 ms
127,856 KB
testcase_31 AC 635 ms
124,672 KB
testcase_32 AC 499 ms
104,996 KB
testcase_33 AC 534 ms
112,024 KB
testcase_34 AC 523 ms
112,032 KB
testcase_35 AC 603 ms
124,168 KB
testcase_36 AC 537 ms
112,804 KB
testcase_37 AC 295 ms
122,932 KB
testcase_38 AC 340 ms
95,892 KB
testcase_39 AC 321 ms
95,896 KB
testcase_40 AC 338 ms
95,524 KB
testcase_41 AC 333 ms
103,840 KB
testcase_42 AC 346 ms
103,836 KB
testcase_43 AC 484 ms
103,276 KB
testcase_44 AC 445 ms
117,704 KB
testcase_45 AC 286 ms
123,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class BIT_dinamic: #0-indexed
    def __init__(self, n):
        self.tree = {}
        self.MAX = 1<<(n+1).bit_length()
    def get_sum(self, i): #a_0 + ... + a_{i} #閉区間
        s = 0; i += 1
        while i > 0:
            if i in self.tree:
                s += self.tree[i]
            i -= i & -i
        return s
    def query(self,l,r): #a_l + ... + a_r 閉区間
        return self.get_sum(r) - self.get_sum(l-1) 
    def add(self, i, x):
        i += 1
        while i <= self.MAX:
            if i in self.tree:
                self.tree[i] += x
            else:
                self.tree[i] = x
            i += i & -i
    def bisect_left(self,w):
        #和が w 以上になる最小の index
        #w が存在しない場合 -1 を返す
        if w <= 0: return 0
        x,k = 0,self.MAX
        while k:
            k >>= 1
            if x+k not in self.tree:
                x += k
            elif self.tree[x+k] < w:
                w -= self.tree[x+k]
                x += k
        return x if x!=self.MAX-1 else -1

def f(n,k): return 50*n+500*n//(8+2*k)

n = int(input())
*a, = map(int,input().split())
T = int(input())

from collections import defaultdict
num = [0]*n
points = defaultdict(int)
last = defaultdict(int)
bit = BIT_dinamic(15601*100000)
for t in range(T):
    s,p = input().split()
    val = points[s]*100000 + (T-1-last[s])
    if p == "?":
        x = bit.get_sum(val)
        print(len(last)-x+1)

    else:
        if points[s]: bit.add(val,-1)
        p = ord(p)-65
        num[p] += 1
        points[s] += f(a[p],num[p])
        last[s] = t
        bit.add(points[s]*100000+(T-1-last[s]),1)
0