結果

問題 No.1786 Maximum Suffix Median (Online)
ユーザー chineristACchineristAC
提出日時 2021-11-14 21:16:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 366 ms / 2,000 ms
コード長 754 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 101,168 KB
最終ジャッジ日時 2024-07-23 19:42:46
合計ジャッジ時間 12,196 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
55,680 KB
testcase_01 AC 46 ms
55,808 KB
testcase_02 AC 46 ms
55,936 KB
testcase_03 AC 47 ms
55,808 KB
testcase_04 AC 48 ms
56,320 KB
testcase_05 AC 50 ms
56,064 KB
testcase_06 AC 47 ms
55,936 KB
testcase_07 AC 46 ms
55,680 KB
testcase_08 AC 338 ms
97,912 KB
testcase_09 AC 275 ms
91,128 KB
testcase_10 AC 292 ms
93,064 KB
testcase_11 AC 266 ms
88,872 KB
testcase_12 AC 342 ms
100,124 KB
testcase_13 AC 287 ms
98,048 KB
testcase_14 AC 241 ms
92,896 KB
testcase_15 AC 257 ms
95,108 KB
testcase_16 AC 259 ms
95,012 KB
testcase_17 AC 234 ms
92,460 KB
testcase_18 AC 353 ms
100,572 KB
testcase_19 AC 352 ms
100,372 KB
testcase_20 AC 366 ms
100,504 KB
testcase_21 AC 364 ms
100,760 KB
testcase_22 AC 356 ms
100,700 KB
testcase_23 AC 252 ms
95,148 KB
testcase_24 AC 211 ms
89,300 KB
testcase_25 AC 281 ms
98,304 KB
testcase_26 AC 203 ms
89,904 KB
testcase_27 AC 193 ms
89,700 KB
testcase_28 AC 216 ms
92,048 KB
testcase_29 AC 46 ms
56,064 KB
testcase_30 AC 47 ms
55,808 KB
testcase_31 AC 223 ms
96,000 KB
testcase_32 AC 292 ms
101,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,random,bisect
from collections import deque,defaultdict
from heapq import heapify,heappop,heappush
from itertools import permutations
from math import log,gcd

input = lambda :sys.stdin.readline()
mi = lambda :map(int,input().split())
li = lambda :list(mi())

def maximum_suffix_median_online(N,A):
    if N==1:
        return [A[0]]
    A[1] ^= A[0]
    res = [A[i] for i in range(N)]
    que = [[] for p in range(2)]
    
    for i in range(2,N):
        A[i] ^= res[i-1]
        p = i&1
        heappush(que[p],-A[i-1])
        heappush(que[p],-A[i-2])
        heappop(que[p])
        res[i] = max(A[i],-que[p][0])
    
    return res

N = int(input())
A = [int(input()) for i in range(N)]
print(*maximum_suffix_median_online(N,A),sep="\n")
0