結果

問題 No.2930 Larger Mex
ユーザー nikoro256nikoro256
提出日時 2024-10-12 16:05:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 506 ms / 2,000 ms
コード長 698 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 217,644 KB
最終ジャッジ日時 2024-10-12 16:05:20
合計ジャッジ時間 13,589 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
53,760 KB
testcase_01 AC 45 ms
53,632 KB
testcase_02 AC 45 ms
54,144 KB
testcase_03 AC 65 ms
67,200 KB
testcase_04 AC 61 ms
65,920 KB
testcase_05 AC 63 ms
65,920 KB
testcase_06 AC 68 ms
65,664 KB
testcase_07 AC 63 ms
66,048 KB
testcase_08 AC 157 ms
107,520 KB
testcase_09 AC 158 ms
104,832 KB
testcase_10 AC 157 ms
107,332 KB
testcase_11 AC 137 ms
100,480 KB
testcase_12 AC 322 ms
160,776 KB
testcase_13 AC 205 ms
109,460 KB
testcase_14 AC 415 ms
213,312 KB
testcase_15 AC 174 ms
104,236 KB
testcase_16 AC 151 ms
102,144 KB
testcase_17 AC 174 ms
107,232 KB
testcase_18 AC 160 ms
103,172 KB
testcase_19 AC 251 ms
110,020 KB
testcase_20 AC 211 ms
107,664 KB
testcase_21 AC 192 ms
107,520 KB
testcase_22 AC 352 ms
159,236 KB
testcase_23 AC 200 ms
105,216 KB
testcase_24 AC 167 ms
106,112 KB
testcase_25 AC 435 ms
200,876 KB
testcase_26 AC 231 ms
159,208 KB
testcase_27 AC 157 ms
113,768 KB
testcase_28 AC 212 ms
131,968 KB
testcase_29 AC 173 ms
123,456 KB
testcase_30 AC 146 ms
105,024 KB
testcase_31 AC 147 ms
108,212 KB
testcase_32 AC 215 ms
146,488 KB
testcase_33 AC 149 ms
105,184 KB
testcase_34 AC 185 ms
107,648 KB
testcase_35 AC 212 ms
121,028 KB
testcase_36 AC 147 ms
107,136 KB
testcase_37 AC 275 ms
138,668 KB
testcase_38 AC 245 ms
134,356 KB
testcase_39 AC 176 ms
107,776 KB
testcase_40 AC 188 ms
107,904 KB
testcase_41 AC 172 ms
105,216 KB
testcase_42 AC 143 ms
107,648 KB
testcase_43 AC 131 ms
103,808 KB
testcase_44 AC 181 ms
126,644 KB
testcase_45 AC 176 ms
121,476 KB
testcase_46 AC 135 ms
110,464 KB
testcase_47 AC 126 ms
110,720 KB
testcase_48 AC 110 ms
103,040 KB
testcase_49 AC 127 ms
110,592 KB
testcase_50 AC 151 ms
106,752 KB
testcase_51 AC 286 ms
151,292 KB
testcase_52 AC 506 ms
217,644 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 ans>=N:
        continue
    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