結果

問題 No.2930 Larger Mex
ユーザー kusirakusirakusirakusira
提出日時 2024-09-10 10:57:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 174 ms / 2,000 ms
コード長 948 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 126,560 KB
最終ジャッジ日時 2024-10-12 06:39:20
合計ジャッジ時間 9,916 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,372 KB
testcase_01 AC 39 ms
53,228 KB
testcase_02 AC 36 ms
53,412 KB
testcase_03 AC 58 ms
66,752 KB
testcase_04 AC 55 ms
65,416 KB
testcase_05 AC 59 ms
67,892 KB
testcase_06 AC 53 ms
66,444 KB
testcase_07 AC 53 ms
65,380 KB
testcase_08 AC 124 ms
106,600 KB
testcase_09 AC 122 ms
103,832 KB
testcase_10 AC 128 ms
106,764 KB
testcase_11 AC 108 ms
100,092 KB
testcase_12 AC 149 ms
109,936 KB
testcase_13 AC 139 ms
108,896 KB
testcase_14 AC 156 ms
109,372 KB
testcase_15 AC 133 ms
102,428 KB
testcase_16 AC 140 ms
100,620 KB
testcase_17 AC 155 ms
107,144 KB
testcase_18 AC 141 ms
102,788 KB
testcase_19 AC 166 ms
109,508 KB
testcase_20 AC 158 ms
109,360 KB
testcase_21 AC 166 ms
108,484 KB
testcase_22 AC 161 ms
111,476 KB
testcase_23 AC 153 ms
107,260 KB
testcase_24 AC 155 ms
106,424 KB
testcase_25 AC 168 ms
121,984 KB
testcase_26 AC 119 ms
120,332 KB
testcase_27 AC 107 ms
110,920 KB
testcase_28 AC 114 ms
115,752 KB
testcase_29 AC 111 ms
115,564 KB
testcase_30 AC 114 ms
117,460 KB
testcase_31 AC 102 ms
108,736 KB
testcase_32 AC 114 ms
117,856 KB
testcase_33 AC 117 ms
118,536 KB
testcase_34 AC 158 ms
107,552 KB
testcase_35 AC 123 ms
111,612 KB
testcase_36 AC 151 ms
107,732 KB
testcase_37 AC 147 ms
109,864 KB
testcase_38 AC 171 ms
111,896 KB
testcase_39 AC 150 ms
110,340 KB
testcase_40 AC 166 ms
109,240 KB
testcase_41 AC 141 ms
106,984 KB
testcase_42 AC 118 ms
118,992 KB
testcase_43 AC 113 ms
115,552 KB
testcase_44 AC 114 ms
115,476 KB
testcase_45 AC 114 ms
115,652 KB
testcase_46 AC 107 ms
106,532 KB
testcase_47 AC 107 ms
106,652 KB
testcase_48 AC 93 ms
96,960 KB
testcase_49 AC 111 ms
106,696 KB
testcase_50 AC 150 ms
105,644 KB
testcase_51 AC 148 ms
111,128 KB
testcase_52 AC 174 ms
126,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int, input().split())
A = list(map(int, input().split()))
cnt = {}

if((1<=n<=2*10**5 and 0<=m<=2*10**5)== False):
	print("WA")
	
for i in range(n):
	if((0<=A[i]<=2*10**5)==False):
		print("WA")
	
if(m==0):
    for i in range(n):
        print(n-i)
    exit()

def add(x):
    if(x >= m):
        return
    if(x not in cnt):
        cnt[x] = 0
    cnt[x] += 1

def remove(x):
    if(x >= m):
        return
    cnt[x] -= 1
    if(cnt[x] == 0):
        del cnt[x]

B = [0]*n

# 開区間[l, r)
l = 0
r = 0
while l < n:
    if(len(cnt) == m):
        
        # print(A[l:r])
        
        # imos
        a = r-l
        b = a + (n-r)
        B[a-1] += 1
        if(b < n): B[b] -= 1
        
        # print(a,b)
        
        remove(A[l])
        l += 1
    else:
        if(r == n):
            break
        add(A[r])
        r += 1

CB = [0]
for i in range(n):
    CB.append(CB[-1] + B[i])

for ans in CB[1:]:
    print(ans)



0