結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,608 KB
testcase_01 AC 37 ms
53,836 KB
testcase_02 AC 36 ms
53,036 KB
testcase_03 AC 53 ms
66,916 KB
testcase_04 AC 49 ms
65,068 KB
testcase_05 AC 59 ms
67,012 KB
testcase_06 AC 49 ms
64,840 KB
testcase_07 AC 51 ms
65,604 KB
testcase_08 AC 114 ms
106,604 KB
testcase_09 AC 109 ms
103,836 KB
testcase_10 AC 116 ms
106,932 KB
testcase_11 AC 105 ms
111,560 KB
testcase_12 AC 135 ms
111,944 KB
testcase_13 AC 127 ms
109,068 KB
testcase_14 AC 145 ms
112,388 KB
testcase_15 AC 127 ms
102,548 KB
testcase_16 AC 130 ms
100,324 KB
testcase_17 AC 147 ms
107,148 KB
testcase_18 AC 130 ms
102,680 KB
testcase_19 AC 151 ms
111,144 KB
testcase_20 AC 146 ms
110,064 KB
testcase_21 AC 147 ms
108,340 KB
testcase_22 AC 148 ms
114,656 KB
testcase_23 AC 137 ms
106,996 KB
testcase_24 AC 142 ms
106,364 KB
testcase_25 AC 154 ms
118,972 KB
testcase_26 AC 113 ms
120,464 KB
testcase_27 AC 101 ms
111,120 KB
testcase_28 AC 104 ms
115,728 KB
testcase_29 AC 106 ms
115,592 KB
testcase_30 AC 107 ms
117,884 KB
testcase_31 AC 97 ms
108,672 KB
testcase_32 AC 107 ms
118,136 KB
testcase_33 AC 108 ms
117,888 KB
testcase_34 AC 147 ms
107,760 KB
testcase_35 AC 113 ms
111,672 KB
testcase_36 AC 133 ms
107,132 KB
testcase_37 AC 132 ms
111,660 KB
testcase_38 AC 164 ms
118,372 KB
testcase_39 AC 143 ms
110,176 KB
testcase_40 AC 159 ms
110,544 KB
testcase_41 AC 133 ms
106,888 KB
testcase_42 AC 117 ms
118,668 KB
testcase_43 AC 112 ms
115,652 KB
testcase_44 AC 109 ms
115,676 KB
testcase_45 AC 107 ms
115,648 KB
testcase_46 AC 104 ms
106,648 KB
testcase_47 AC 101 ms
106,580 KB
testcase_48 AC 87 ms
96,708 KB
testcase_49 AC 102 ms
107,024 KB
testcase_50 AC 141 ms
105,752 KB
testcase_51 AC 137 ms
111,040 KB
testcase_52 AC 155 ms
122,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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