結果

問題 No.318 学学学学学
ユーザー 👑 rin204rin204
提出日時 2022-07-04 18:10:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 293 ms / 2,000 ms
コード長 1,947 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 119,016 KB
最終ジャッジ日時 2024-05-08 07:37:12
合計ジャッジ時間 6,895 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
77,680 KB
testcase_01 AC 84 ms
81,372 KB
testcase_02 AC 146 ms
83,352 KB
testcase_03 AC 83 ms
80,100 KB
testcase_04 AC 112 ms
82,280 KB
testcase_05 AC 293 ms
118,784 KB
testcase_06 AC 206 ms
106,260 KB
testcase_07 AC 183 ms
101,232 KB
testcase_08 AC 165 ms
97,216 KB
testcase_09 AC 145 ms
93,744 KB
testcase_10 AC 120 ms
93,440 KB
testcase_11 AC 278 ms
119,016 KB
testcase_12 AC 253 ms
105,912 KB
testcase_13 AC 202 ms
101,312 KB
testcase_14 AC 195 ms
97,128 KB
testcase_15 AC 180 ms
93,484 KB
testcase_16 AC 119 ms
93,596 KB
testcase_17 AC 187 ms
107,392 KB
testcase_18 AC 208 ms
107,876 KB
testcase_19 AC 168 ms
107,764 KB
testcase_20 AC 127 ms
92,040 KB
testcase_21 AC 40 ms
53,120 KB
testcase_22 AC 38 ms
52,992 KB
testcase_23 AC 39 ms
53,332 KB
testcase_24 AC 39 ms
52,864 KB
testcase_25 AC 42 ms
53,120 KB
testcase_26 AC 38 ms
52,864 KB
testcase_27 AC 39 ms
52,608 KB
testcase_28 AC 40 ms
53,120 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