結果

問題 No.318 学学学学学
ユーザー 👑 rin204rin204
提出日時 2022-07-04 18:10:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 321 ms / 2,000 ms
コード長 1,947 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 82,032 KB
実行使用メモリ 118,944 KB
最終ジャッジ日時 2024-12-14 09:36:52
合計ジャッジ時間 7,240 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
77,952 KB
testcase_01 AC 97 ms
81,152 KB
testcase_02 AC 153 ms
83,328 KB
testcase_03 AC 90 ms
79,876 KB
testcase_04 AC 125 ms
82,176 KB
testcase_05 AC 321 ms
118,588 KB
testcase_06 AC 229 ms
106,240 KB
testcase_07 AC 196 ms
101,216 KB
testcase_08 AC 175 ms
97,024 KB
testcase_09 AC 159 ms
93,440 KB
testcase_10 AC 129 ms
93,664 KB
testcase_11 AC 311 ms
118,944 KB
testcase_12 AC 271 ms
105,940 KB
testcase_13 AC 217 ms
101,420 KB
testcase_14 AC 213 ms
96,964 KB
testcase_15 AC 195 ms
93,312 KB
testcase_16 AC 128 ms
93,568 KB
testcase_17 AC 201 ms
107,520 KB
testcase_18 AC 222 ms
107,628 KB
testcase_19 AC 179 ms
107,520 KB
testcase_20 AC 136 ms
91,904 KB
testcase_21 AC 44 ms
52,992 KB
testcase_22 AC 42 ms
52,736 KB
testcase_23 AC 43 ms
53,248 KB
testcase_24 AC 43 ms
52,736 KB
testcase_25 AC 42 ms
53,244 KB
testcase_26 AC 44 ms
53,248 KB
testcase_27 AC 44 ms
52,992 KB
testcase_28 AC 45 ms
52,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq

class Heapq:
    def __init__(self, lst = [], reverse = False):
        if reverse:
            self.pm = -1
            self.hq = [-l for l in lst]
        else:
            self.pm = 1
            self.hq = lst.copy()
        heapq.heapify(self.hq)
        self.tot = sum(lst)
        self.cnt = {}
        self.length = len(lst)
    
    def __bool__(self):
        return self.length > 0
        
    def __len__(self):
        return self.length
    
    def __getitem__(self, i):
        if i == 0:
            return self.top()
        else:
            assert False
    
    def push(self, x):
        self.length += 1
        self.cnt[x * self.pm] = self.cnt.get(x * self.pm, 0) + 1
        heapq.heappush(self.hq, x * self.pm)
        self.tot += x
    
    def pop(self):
        if self.length == 0:
            return None
        self.length -= 1
        ret = heapq.heappop(self.hq)
        self.tot -= self.pm * ret
        self.cnt[ret] -= 1
        self.delete()
        return self.pm * ret
    
    def top(self):
        if self.hq:
            return self.pm * self.hq[0]
        else:
            return None
    
    def remove(self, x):
        if self.cnt.get(x * self.pm, 0) == 0:
            return False
        self.cnt[x * self.pm] -= 1
        self.length -= 1
        self.tot -= x
        self.delete()
        return True
            
    def delete(self):
        while self.hq and self.cnt.get(self.hq[0], 0) == 0:
            heapq.heappop(self.hq)

n = int(input())
A = list(map(int, input().split()))
L = {}
R = {}
for i, a in enumerate(A):
    if a not in L:
        L[a] = i
    R[a] = i

add = [-1] * n
remove = [-1] * n
for a, i in L.items():
    add[i] = a
for a, i in R.items():
    remove[i] = a

hq = Heapq(reverse=True)
ans = [0] * n
for i in range(n):
    if add[i] != -1:
        hq.push(add[i])
    ans[i] = hq.top()
    if remove[i] != -1:
        hq.remove(remove[i])
print(*ans)
0