結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
12,916 KB
testcase_01 AC 71 ms
15,152 KB
testcase_02 AC 79 ms
15,952 KB
testcase_03 AC 60 ms
14,344 KB
testcase_04 AC 73 ms
15,320 KB
testcase_05 AC 376 ms
38,468 KB
testcase_06 AC 290 ms
32,844 KB
testcase_07 AC 252 ms
28,428 KB
testcase_08 AC 219 ms
25,804 KB
testcase_09 AC 184 ms
23,440 KB
testcase_10 AC 162 ms
21,968 KB
testcase_11 AC 354 ms
37,832 KB
testcase_12 AC 269 ms
30,952 KB
testcase_13 AC 224 ms
26,956 KB
testcase_14 AC 195 ms
24,392 KB
testcase_15 AC 177 ms
23,244 KB
testcase_16 AC 156 ms
22,096 KB
testcase_17 AC 270 ms
30,828 KB
testcase_18 AC 234 ms
30,736 KB
testcase_19 AC 220 ms
32,624 KB
testcase_20 AC 152 ms
20,068 KB
testcase_21 AC 27 ms
10,880 KB
testcase_22 AC 26 ms
10,752 KB
testcase_23 AC 26 ms
10,880 KB
testcase_24 AC 26 ms
10,880 KB
testcase_25 AC 26 ms
10,752 KB
testcase_26 AC 26 ms
10,752 KB
testcase_27 AC 26 ms
10,752 KB
testcase_28 AC 26 ms
10,880 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 and c == -pq[0]:
        while pq and dic[-pq[0]][1] <= i: heapq.heappop(pq)
print(*Bs)
0