結果

問題 No.1705 Mode of long array
ユーザー H3PO4H3PO4
提出日時 2021-10-08 23:45:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 444 ms / 3,000 ms
コード長 1,335 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 82,496 KB
実行使用メモリ 119,472 KB
最終ジャッジ日時 2024-07-23 08:12:08
合計ジャッジ時間 15,570 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
54,400 KB
testcase_01 AC 44 ms
54,528 KB
testcase_02 AC 44 ms
54,528 KB
testcase_03 AC 88 ms
77,008 KB
testcase_04 AC 71 ms
70,668 KB
testcase_05 AC 98 ms
77,312 KB
testcase_06 AC 127 ms
77,840 KB
testcase_07 AC 133 ms
77,776 KB
testcase_08 AC 130 ms
77,952 KB
testcase_09 AC 125 ms
78,080 KB
testcase_10 AC 123 ms
78,372 KB
testcase_11 AC 126 ms
78,208 KB
testcase_12 AC 124 ms
78,460 KB
testcase_13 AC 279 ms
98,332 KB
testcase_14 AC 227 ms
93,932 KB
testcase_15 AC 206 ms
82,760 KB
testcase_16 AC 228 ms
84,436 KB
testcase_17 AC 193 ms
82,448 KB
testcase_18 AC 178 ms
82,652 KB
testcase_19 AC 249 ms
89,924 KB
testcase_20 AC 198 ms
85,724 KB
testcase_21 AC 242 ms
98,084 KB
testcase_22 AC 300 ms
103,672 KB
testcase_23 AC 190 ms
82,344 KB
testcase_24 AC 193 ms
82,152 KB
testcase_25 AC 193 ms
82,536 KB
testcase_26 AC 194 ms
82,256 KB
testcase_27 AC 192 ms
82,304 KB
testcase_28 AC 198 ms
83,576 KB
testcase_29 AC 192 ms
82,144 KB
testcase_30 AC 190 ms
82,584 KB
testcase_31 AC 196 ms
82,300 KB
testcase_32 AC 191 ms
82,272 KB
testcase_33 AC 350 ms
118,792 KB
testcase_34 AC 347 ms
115,592 KB
testcase_35 AC 364 ms
118,352 KB
testcase_36 AC 345 ms
118,740 KB
testcase_37 AC 346 ms
118,500 KB
testcase_38 AC 349 ms
119,052 KB
testcase_39 AC 342 ms
115,072 KB
testcase_40 AC 346 ms
118,612 KB
testcase_41 AC 346 ms
119,052 KB
testcase_42 AC 353 ms
119,472 KB
testcase_43 AC 181 ms
95,868 KB
testcase_44 AC 188 ms
95,368 KB
testcase_45 AC 189 ms
95,564 KB
testcase_46 AC 187 ms
95,368 KB
testcase_47 AC 202 ms
95,236 KB
testcase_48 AC 200 ms
95,372 KB
testcase_49 AC 444 ms
114,212 KB
testcase_50 AC 443 ms
113,912 KB
testcase_51 AC 442 ms
113,676 KB
testcase_52 AC 432 ms
113,664 KB
testcase_53 AC 423 ms
113,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import heapq
from collections import Counter

input = sys.stdin.buffer.readline


class Counter_min(Counter):
    def __init__(self, iterable=tuple()):
        super(Counter_min, self).__init__(iterable)
        self.h = list(set(iterable))
        heapq.heapify(self.h)

    def add(self, x):
        if x in self:
            self[x] += 1
        else:
            self[x] = 1
            heapq.heappush(self.h, x)

    def remove(self, x):
        if x not in self:
            raise ValueError
        if self[x] == 1:
            del self[x]
        else:
            self[x] -= 1

    def min(self):
        if not super(Counter_min, self).__len__():
            raise ValueError
        while self.h and self.h[0] not in self:
            heapq.heappop(self.h)
        return self.h[0]


N, M = map(int, input().split())
A = list(map(int, input().split()))
ct = Counter_min()
for i, a in enumerate(A):
    ct.add((-a, -i))

Q = int(input())
for _ in range(Q):
    T, X, Y = map(int, input().split())
    if T == 1:
        X -= 1
        ct.remove((-A[X], -X))
        A[X] += Y
        ct.add((-A[X], -X))
    elif T == 2:
        X -= 1
        ct.remove((-A[X], -X))
        A[X] -= Y
        ct.add((-A[X], -X))
    else:
        # assert T == 3
        _, ans = ct.min()
        ans = 1 - ans
        print(ans)
0