結果

問題 No.318 学学学学学
ユーザー H3PO4H3PO4
提出日時 2020-11-29 14:06:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 285 ms / 2,000 ms
コード長 801 bytes
コンパイル時間 434 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 109,632 KB
最終ジャッジ日時 2024-09-13 01:59:07
合計ジャッジ時間 7,931 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
78,112 KB
testcase_01 AC 144 ms
79,752 KB
testcase_02 AC 164 ms
81,568 KB
testcase_03 AC 135 ms
79,516 KB
testcase_04 AC 145 ms
80,756 KB
testcase_05 AC 280 ms
109,632 KB
testcase_06 AC 215 ms
101,108 KB
testcase_07 AC 213 ms
98,172 KB
testcase_08 AC 201 ms
96,256 KB
testcase_09 AC 186 ms
94,064 KB
testcase_10 AC 162 ms
93,692 KB
testcase_11 AC 285 ms
109,488 KB
testcase_12 AC 270 ms
101,468 KB
testcase_13 AC 255 ms
98,708 KB
testcase_14 AC 225 ms
96,520 KB
testcase_15 AC 209 ms
94,348 KB
testcase_16 AC 185 ms
93,780 KB
testcase_17 AC 208 ms
100,964 KB
testcase_18 AC 195 ms
100,644 KB
testcase_19 AC 136 ms
101,108 KB
testcase_20 AC 170 ms
92,604 KB
testcase_21 AC 40 ms
53,228 KB
testcase_22 AC 39 ms
54,100 KB
testcase_23 AC 39 ms
53,356 KB
testcase_24 AC 42 ms
53,212 KB
testcase_25 AC 41 ms
53,076 KB
testcase_26 AC 41 ms
54,428 KB
testcase_27 AC 40 ms
53,416 KB
testcase_28 AC 40 ms
53,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq


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

    def add(self, x):
        super(Set_min, self).add(x)
        heapq.heappush(self.h, x)

    def remove(self, x):
        super(Set_min, self).remove(x)

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


N = int(input())
A = tuple(map(int, input().split()))

R = dict()
for i, a in enumerate(A):
    R[a] = i

st = Set_min()
ans = [0] * N
for i, a in enumerate(A):
    st.add(-a)
    ans[i] = -st.min()
    if R[a] == i:
        st.remove(-a)
print(*ans)
0