結果

問題 No.318 学学学学学
ユーザー rpy3cpprpy3cpp
提出日時 2015-12-11 01:23:19
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 401 ms / 2,000 ms
コード長 614 bytes
コンパイル時間 342 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 38,576 KB
最終ジャッジ日時 2024-06-22 15:11:00
合計ジャッジ時間 6,579 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
12,916 KB
testcase_01 AC 74 ms
15,040 KB
testcase_02 AC 82 ms
15,816 KB
testcase_03 AC 63 ms
14,308 KB
testcase_04 AC 72 ms
15,332 KB
testcase_05 AC 401 ms
38,576 KB
testcase_06 AC 325 ms
33,032 KB
testcase_07 AC 267 ms
28,372 KB
testcase_08 AC 219 ms
25,620 KB
testcase_09 AC 185 ms
23,320 KB
testcase_10 AC 162 ms
21,936 KB
testcase_11 AC 374 ms
37,296 KB
testcase_12 AC 277 ms
30,932 KB
testcase_13 AC 229 ms
27,224 KB
testcase_14 AC 196 ms
25,032 KB
testcase_15 AC 179 ms
23,184 KB
testcase_16 AC 157 ms
22,032 KB
testcase_17 AC 277 ms
31,476 KB
testcase_18 AC 256 ms
30,608 KB
testcase_19 AC 222 ms
33,008 KB
testcase_20 AC 162 ms
20,584 KB
testcase_21 AC 28 ms
10,752 KB
testcase_22 AC 28 ms
10,752 KB
testcase_23 AC 27 ms
10,880 KB
testcase_24 AC 27 ms
10,752 KB
testcase_25 AC 27 ms
10,880 KB
testcase_26 AC 26 ms
10,752 KB
testcase_27 AC 26 ms
10,752 KB
testcase_28 AC 26 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq

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

dic = dict()
for i, a in enumerate(As):
    if a in dic:
        dic[a][1] = i
    else:
        dic[a] = [i, i]

Cs = [0] * n
for a, pair in dic.items():
    Cs[pair[0]] = a
    Cs[pair[1]] = a

Bs = []
pq = []
for i, c in enumerate(Cs):
    if c == 0:
        Bs.append(-pq[0])
        continue
    if dic[c][0] == i:
        heapq.heappush(pq, -c)
    Bs.append(-pq[0])
    if i == n - 1:
        break
    if dic[c][1] == i:
        if c == -pq[0]:
            while pq and dic[-pq[0]][1] <= i:
                heapq.heappop(pq)

print(*Bs)
0