結果

問題 No.2930 Larger Mex
ユーザー CecilCecil
提出日時 2024-10-18 14:10:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,462 ms / 2,000 ms
コード長 700 bytes
コンパイル時間 431 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 109,532 KB
最終ジャッジ日時 2024-10-18 14:10:52
合計ジャッジ時間 11,650 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,812 KB
testcase_01 AC 35 ms
53,060 KB
testcase_02 AC 35 ms
52,520 KB
testcase_03 AC 51 ms
66,668 KB
testcase_04 AC 54 ms
65,848 KB
testcase_05 AC 54 ms
65,972 KB
testcase_06 AC 51 ms
64,800 KB
testcase_07 AC 53 ms
66,712 KB
testcase_08 AC 134 ms
106,620 KB
testcase_09 AC 107 ms
103,404 KB
testcase_10 AC 110 ms
106,852 KB
testcase_11 AC 99 ms
100,092 KB
testcase_12 AC 117 ms
108,384 KB
testcase_13 AC 112 ms
107,228 KB
testcase_14 AC 114 ms
108,800 KB
testcase_15 AC 113 ms
104,344 KB
testcase_16 AC 109 ms
101,856 KB
testcase_17 AC 126 ms
108,640 KB
testcase_18 AC 117 ms
103,992 KB
testcase_19 AC 121 ms
108,696 KB
testcase_20 AC 123 ms
108,964 KB
testcase_21 AC 125 ms
108,496 KB
testcase_22 AC 118 ms
108,748 KB
testcase_23 AC 117 ms
104,516 KB
testcase_24 AC 127 ms
107,732 KB
testcase_25 AC 117 ms
109,120 KB
testcase_26 AC 101 ms
105,576 KB
testcase_27 AC 93 ms
99,164 KB
testcase_28 AC 99 ms
102,264 KB
testcase_29 AC 97 ms
102,164 KB
testcase_30 AC 107 ms
106,040 KB
testcase_31 AC 95 ms
100,064 KB
testcase_32 AC 106 ms
106,020 KB
testcase_33 AC 130 ms
106,272 KB
testcase_34 AC 131 ms
107,768 KB
testcase_35 AC 97 ms
95,276 KB
testcase_36 AC 126 ms
108,180 KB
testcase_37 AC 119 ms
104,332 KB
testcase_38 AC 334 ms
107,816 KB
testcase_39 AC 129 ms
108,140 KB
testcase_40 AC 1,462 ms
108,040 KB
testcase_41 AC 133 ms
103,676 KB
testcase_42 AC 103 ms
105,364 KB
testcase_43 AC 98 ms
102,100 KB
testcase_44 AC 98 ms
102,384 KB
testcase_45 AC 100 ms
102,664 KB
testcase_46 AC 120 ms
109,448 KB
testcase_47 AC 114 ms
109,372 KB
testcase_48 AC 98 ms
99,336 KB
testcase_49 AC 132 ms
109,532 KB
testcase_50 AC 122 ms
105,196 KB
testcase_51 AC 123 ms
109,512 KB
testcase_52 AC 119 ms
109,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int, input().split())
A = list(map(int, input().split()))
idx = 0

ans = [0 for _ in range(N+2)]
cnt = [0 for _ in range(max(A)+2)]
mex = 0
for i in range(N):
    #print("###")
    #print(mex)
    #print(i,idx)
    #print(cnt)
    #print(ans)
    while idx<N:
        if mex>=M:
            break
        cnt[A[idx]] += 1
        if mex==A[idx]:
            while cnt[mex]>0:
                mex += 1
        idx += 1
    if mex>=M:
        ans[idx-1-i+1] += 1
        ans[N-i+1] -= 1
    if idx==i:
        idx += 1
    cnt[A[i]] -= 1
    if cnt[A[i]]==0:
        if mex>=A[i]:mex = A[i]
#print(ans)
for i in range(1, N+1):
     ans[i] += ans[i-1]
for i in range(1, N+1):
    print(ans[i])
0