結果

問題 No.318 学学学学学
ユーザー maspymaspy
提出日時 2020-03-07 05:25:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 425 ms / 2,000 ms
コード長 616 bytes
コンパイル時間 237 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 45,752 KB
最終ジャッジ日時 2024-10-14 11:12:55
合計ジャッジ時間 7,781 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
13,568 KB
testcase_01 AC 79 ms
16,256 KB
testcase_02 AC 88 ms
17,556 KB
testcase_03 AC 69 ms
15,512 KB
testcase_04 AC 80 ms
16,688 KB
testcase_05 AC 425 ms
45,752 KB
testcase_06 AC 335 ms
40,932 KB
testcase_07 AC 280 ms
36,104 KB
testcase_08 AC 240 ms
34,940 KB
testcase_09 AC 202 ms
33,676 KB
testcase_10 AC 167 ms
31,740 KB
testcase_11 AC 393 ms
45,112 KB
testcase_12 AC 273 ms
38,188 KB
testcase_13 AC 215 ms
34,812 KB
testcase_14 AC 197 ms
34,192 KB
testcase_15 AC 179 ms
33,132 KB
testcase_16 AC 159 ms
32,140 KB
testcase_17 AC 297 ms
35,784 KB
testcase_18 AC 267 ms
38,568 KB
testcase_19 AC 216 ms
40,908 KB
testcase_20 AC 157 ms
28,064 KB
testcase_21 AC 31 ms
10,624 KB
testcase_22 AC 30 ms
10,624 KB
testcase_23 AC 31 ms
10,752 KB
testcase_24 AC 31 ms
10,752 KB
testcase_25 AC 31 ms
10,752 KB
testcase_26 AC 31 ms
10,624 KB
testcase_27 AC 31 ms
10,752 KB
testcase_28 AC 31 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
# %%
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines
from collections import defaultdict
from heapq import heappop, heappush

# %%
N, *A = map(int, read().split())

# %%
coord = defaultdict(list)
for i, x in enumerate(A):
    coord[x].append(i)


# %%
L_to_R = [-1] * N
for li in coord.values():
    L_to_R[li[0]] = li[-1]


# %%
q = []
B = [0] * N
for L, R in enumerate(L_to_R):
    if R != -1:
        heappush(q, (-A[L], R))
    while q[0][1] < L:
        heappop(q)
    B[L] = -q[0][0]

# %%
print(' '.join(map(str, B)))
0