結果

問題 No.1786 Maximum Suffix Median (Online)
ユーザー Kiri8128Kiri8128
提出日時 2021-11-23 15:02:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 352 ms / 2,000 ms
コード長 535 bytes
コンパイル時間 331 ms
コンパイル使用メモリ 81,780 KB
実行使用メモリ 98,132 KB
最終ジャッジ日時 2024-07-23 19:42:56
合計ジャッジ時間 10,513 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,992 KB
testcase_01 AC 40 ms
52,224 KB
testcase_02 AC 40 ms
52,736 KB
testcase_03 AC 40 ms
53,248 KB
testcase_04 AC 39 ms
52,480 KB
testcase_05 AC 40 ms
53,120 KB
testcase_06 AC 39 ms
52,480 KB
testcase_07 AC 40 ms
52,864 KB
testcase_08 AC 322 ms
95,184 KB
testcase_09 AC 262 ms
88,624 KB
testcase_10 AC 270 ms
90,288 KB
testcase_11 AC 248 ms
87,376 KB
testcase_12 AC 328 ms
97,236 KB
testcase_13 AC 295 ms
94,788 KB
testcase_14 AC 240 ms
89,988 KB
testcase_15 AC 260 ms
92,228 KB
testcase_16 AC 264 ms
92,824 KB
testcase_17 AC 239 ms
90,796 KB
testcase_18 AC 339 ms
98,132 KB
testcase_19 AC 352 ms
97,644 KB
testcase_20 AC 347 ms
97,716 KB
testcase_21 AC 337 ms
97,720 KB
testcase_22 AC 344 ms
97,860 KB
testcase_23 AC 259 ms
92,440 KB
testcase_24 AC 209 ms
87,264 KB
testcase_25 AC 292 ms
95,960 KB
testcase_26 AC 220 ms
88,428 KB
testcase_27 AC 208 ms
88,596 KB
testcase_28 AC 224 ms
90,768 KB
testcase_29 AC 38 ms
53,200 KB
testcase_30 AC 38 ms
53,940 KB
testcase_31 AC 242 ms
92,108 KB
testcase_32 AC 296 ms
95,564 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappush, heappop
class MaxHeapQ():
    def __init__(self):
        self.H = []
    def hpush(self, x):
        heappush(self.H, -x)
    def hpop(self):
        return -heappop(self.H)
    def hmax(self):
        return -self.H[0]

N = int(input())
A = [int(input()) for _ in range(N)]
ANS = [-1] * N
ans = 0
MH = [MaxHeapQ() for _ in range(2)]
for i in range(0, N):
    H = MH[i%2]
    H.hpush(A[i-1])
    H.hpop()
    A[i] ^= ans
    H.hpush(A[i])
    ans = H.hmax()
    ANS[i] = ans
print("\n".join(map(str, ANS)))
0