結果

問題 No.2930 Larger Mex
ユーザー nikoro256nikoro256
提出日時 2024-10-12 15:59:36
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 666 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 214,872 KB
最終ジャッジ日時 2024-10-12 15:59:50
合計ジャッジ時間 13,149 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
53,632 KB
testcase_01 AC 41 ms
53,760 KB
testcase_02 AC 41 ms
54,144 KB
testcase_03 AC 60 ms
67,456 KB
testcase_04 WA -
testcase_05 AC 60 ms
67,328 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 143 ms
103,808 KB
testcase_16 AC 152 ms
102,528 KB
testcase_17 AC 169 ms
107,264 KB
testcase_18 AC 148 ms
103,424 KB
testcase_19 AC 247 ms
108,904 KB
testcase_20 AC 225 ms
107,264 KB
testcase_21 AC 185 ms
107,136 KB
testcase_22 AC 409 ms
159,108 KB
testcase_23 AC 212 ms
104,960 KB
testcase_24 AC 167 ms
106,240 KB
testcase_25 AC 496 ms
198,548 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 185 ms
107,392 KB
testcase_35 WA -
testcase_36 AC 149 ms
107,264 KB
testcase_37 WA -
testcase_38 AC 239 ms
133,588 KB
testcase_39 AC 163 ms
107,520 KB
testcase_40 AC 169 ms
107,780 KB
testcase_41 AC 175 ms
105,196 KB
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 AC 132 ms
110,592 KB
testcase_47 AC 131 ms
110,592 KB
testcase_48 AC 116 ms
103,296 KB
testcase_49 AC 133 ms
110,464 KB
testcase_50 AC 152 ms
106,496 KB
testcase_51 AC 315 ms
149,496 KB
testcase_52 AC 532 ms
214,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
N,M=map(int,input().split())
A=list(map(int,input().split()))
if M==0:
    print(*[N-i for i in range(N)], sep = "\n")
    exit(0)
left = [10**8 for _ in range(M)]
dq= [deque() for _ in range(M)]
for i in range(N):
    if A[i]>=M:
        continue
    left[A[i]]=min(left[A[i]], i)
    dq[A[i]].append(i)
for i in range(M):
    dq[i].append(N)
ans=max(left)
fa=[0 for  _ in range(N)]
for i in range(N):
    if N>N-i>=0:
        fa[N-i]-=1
    if N>ans-i>=0:
        fa[ans-i]+=1
    if A[i]>=M:
        continue
    p=dq[A[i]].popleft()
    ans=max(ans,dq[A[i]][0])
    
for i in range(1,len(fa)):
    fa[i]+=fa[i-1]
print(*fa,sep="\n")
0