結果

問題 No.318 学学学学学
ユーザー lloyzlloyz
提出日時 2023-04-28 00:03:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 232 ms / 2,000 ms
コード長 756 bytes
コンパイル時間 501 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 107,904 KB
最終ジャッジ日時 2024-11-17 03:59:01
合計ジャッジ時間 6,473 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
71,168 KB
testcase_01 AC 69 ms
77,568 KB
testcase_02 AC 84 ms
81,536 KB
testcase_03 AC 71 ms
75,264 KB
testcase_04 AC 81 ms
80,700 KB
testcase_05 AC 152 ms
107,904 KB
testcase_06 AC 207 ms
99,968 KB
testcase_07 AC 204 ms
96,468 KB
testcase_08 AC 201 ms
94,208 KB
testcase_09 AC 201 ms
92,416 KB
testcase_10 AC 185 ms
92,252 KB
testcase_11 AC 151 ms
107,904 KB
testcase_12 AC 232 ms
99,712 KB
testcase_13 AC 205 ms
96,508 KB
testcase_14 AC 207 ms
94,336 KB
testcase_15 AC 210 ms
92,416 KB
testcase_16 AC 193 ms
92,160 KB
testcase_17 AC 171 ms
98,688 KB
testcase_18 AC 183 ms
99,036 KB
testcase_19 AC 158 ms
98,688 KB
testcase_20 AC 194 ms
90,496 KB
testcase_21 AC 43 ms
54,528 KB
testcase_22 AC 43 ms
54,528 KB
testcase_23 AC 44 ms
54,272 KB
testcase_24 AC 44 ms
54,248 KB
testcase_25 AC 45 ms
54,016 KB
testcase_26 AC 44 ms
54,016 KB
testcase_27 AC 43 ms
53,888 KB
testcase_28 AC 44 ms
53,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
from heapq import heappush, heappop

n = int(input())
A = list(map(int, input().split()))

counter = defaultdict(int)
for i in range(n):
    counter[A[i]] += 1

ANS = [-1 for _ in range(n)]
H = []
for i in range(n):
    a = A[i]
    if len(H) == 0:
        ANS[i] = a
    else:
        max_ = -H[0]
        if max_ > a:
            ANS[i] = max_
        else:
            ANS[i] = a
    counter[a] -= 1
    if counter[a] > 0:
        heappush(H, -a)
    elif counter[a] == 0 and len(H) > 0:
        if a == -H[0]:
            heappop(H)
            while H:
                max_ = -H[0]
                if counter[max_] == 0:
                    heappop(H)
                    continue
                break
print(*ANS)
0