結果

問題 No.2930 Larger Mex
ユーザー mkawa2mkawa2
提出日時 2024-10-17 16:13:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 119 ms / 2,000 ms
コード長 1,217 bytes
コンパイル時間 351 ms
コンパイル使用メモリ 82,476 KB
実行使用メモリ 109,688 KB
最終ジャッジ日時 2024-10-17 16:14:15
合計ジャッジ時間 9,893 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,684 KB
testcase_01 AC 32 ms
53,192 KB
testcase_02 AC 31 ms
53,108 KB
testcase_03 AC 49 ms
65,836 KB
testcase_04 AC 50 ms
64,792 KB
testcase_05 AC 50 ms
66,096 KB
testcase_06 AC 49 ms
66,176 KB
testcase_07 AC 49 ms
66,320 KB
testcase_08 AC 105 ms
107,396 KB
testcase_09 AC 95 ms
104,248 KB
testcase_10 AC 103 ms
107,300 KB
testcase_11 AC 90 ms
100,864 KB
testcase_12 AC 108 ms
108,656 KB
testcase_13 AC 109 ms
107,784 KB
testcase_14 AC 106 ms
109,180 KB
testcase_15 AC 104 ms
103,020 KB
testcase_16 AC 101 ms
100,672 KB
testcase_17 AC 110 ms
105,564 KB
testcase_18 AC 103 ms
102,984 KB
testcase_19 AC 112 ms
106,100 KB
testcase_20 AC 119 ms
106,208 KB
testcase_21 AC 114 ms
105,840 KB
testcase_22 AC 109 ms
108,744 KB
testcase_23 AC 102 ms
102,400 KB
testcase_24 AC 108 ms
105,264 KB
testcase_25 AC 109 ms
109,128 KB
testcase_26 AC 97 ms
107,584 KB
testcase_27 AC 84 ms
100,000 KB
testcase_28 AC 87 ms
103,752 KB
testcase_29 AC 87 ms
103,692 KB
testcase_30 AC 91 ms
105,056 KB
testcase_31 AC 86 ms
98,768 KB
testcase_32 AC 93 ms
105,452 KB
testcase_33 AC 98 ms
105,200 KB
testcase_34 AC 112 ms
106,184 KB
testcase_35 AC 85 ms
95,552 KB
testcase_36 AC 110 ms
105,788 KB
testcase_37 AC 105 ms
105,080 KB
testcase_38 AC 116 ms
106,448 KB
testcase_39 AC 112 ms
106,420 KB
testcase_40 AC 115 ms
106,468 KB
testcase_41 AC 103 ms
103,624 KB
testcase_42 AC 95 ms
106,368 KB
testcase_43 AC 90 ms
103,204 KB
testcase_44 AC 91 ms
103,828 KB
testcase_45 AC 89 ms
103,656 KB
testcase_46 AC 94 ms
105,188 KB
testcase_47 AC 95 ms
105,016 KB
testcase_48 AC 80 ms
95,572 KB
testcase_49 AC 98 ms
105,676 KB
testcase_50 AC 110 ms
104,652 KB
testcase_51 AC 109 ms
107,128 KB
testcase_52 AC 106 ms
109,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(200005)
# sys.set_int_max_str_digits(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
# inf = -1-(-1 << 31)
inf = -1-(-1 << 62)

# md = 10**9+7
# md = 998244353

n,m=LI()
aa=LI()

if m==0:
    for a in range(n,0,-1):print(a)
    exit()

cnt=[0]*m
kind=0

ans=[0]*(n+1)
r=0
for l in range(n):
    while r<n and kind<m:
        a=aa[r]
        if a<m:
            cnt[a]+=1
            if cnt[a]==1:kind+=1
        r+=1
    if kind==m:
        ans[r-l-1]+=1
        ans[n-l]-=1
    a=aa[l]
    if a<m:
        cnt[a]-=1
        if cnt[a]==0:kind-=1

for i in range(n-1):ans[i+1]+=ans[i]
for a in ans[:-1]:print(a)
0